Skip to main content
POST
/
matters
/
v1
/
parties
Create party
curl --request POST \
  --url https://api.case.dev/matters/v1/parties \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "type": "person",
  "email": "<string>",
  "phone": "<string>",
  "addresses": [
    {}
  ],
  "metadata": {},
  "custom_fields": {},
  "notes": "<string>"
}
'

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Body

application/json
name
string
required
type
enum<string>
Available options:
person,
organization
email
string
phone
string
addresses
object[]
metadata
object
custom_fields
object
notes
string | null

Response

201

Party created