Create a new payment party (client, vendor, counsel, etc.)
curl --request POST \
--url https://api.case.dev/payments/v1/parties \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"type": "individual",
"role": "client",
"email": "<string>",
"phone": "<string>",
"address_line1": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>",
"metadata": {}
}
'API key starting with sk_case_
individual, organization client, vendor, counsel, expert, lien_holder, funder, opposing_party, other Party created
Was this page helpful?
curl --request POST \
--url https://api.case.dev/payments/v1/parties \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"type": "individual",
"role": "client",
"email": "<string>",
"phone": "<string>",
"address_line1": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>",
"metadata": {}
}
'