Update party details
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
}
'API key starting with sk_case_
Party updated
Was this page helpful?
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
}
'