Skip to main content
POST
/
payments
/
v1
/
parties
Create payment party
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": {}
}
'

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Body

application/json
name
string
required
type
enum<string>
required
Available options:
individual,
organization
role
enum<string>
Available options:
client,
vendor,
counsel,
expert,
lien_holder,
funder,
opposing_party,
other
email
string
phone
string
address_line1
string
city
string
state
string
postal_code
string
country
string
metadata
object

Response

200

Party created