Individuals
curl --location --request POST '' \
--header 'Content-Type: application/json' \
--header 'Api-Key: <API Key>' \
--header 'Idempotency-Key: <generate a uuid>' \
--data-raw '{
"type": "individual",
"firstName": "John",
"lastName": "Doe",
"email": "email@example.com",
"address": {
"line1": "123 Main St",
"line2": "New York City",
"city": "New York",
"state": "New York",
"postalCode": "10001",
"country": "USA"
},
"dateOfBirth": "2007-01-01",
}
Last updated