Skip to main content
PATCH
/
payments
/
v1
/
parties
/
{id}
Update party
curl --request PATCH \
  --url https://api.case.dev/payments/v1/parties/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "role": "client",
  "address_line1": "<string>",
  "address_line2": "<string>",
  "city": "<string>",
  "state": "<string>",
  "postal_code": "<string>",
  "country": "<string>",
  "notes": "<string>",
  "metadata": {},
  "is_active": true
}
'

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Path Parameters

id
string
required

Body

application/json
name
string
email
string
phone
string
role
enum<string>
Available options:
client,
vendor,
counsel,
expert,
lien_holder,
funder,
opposing_party,
other
address_line1
string
address_line2
string
city
string
state
string
postal_code
string
country
string
notes
string
metadata
object
is_active
boolean

Response

Party updated