Contacts
Create a contact
Creates a new Contact object.
post/accounts/{account_id}/contacts
Path parameters
account_idstring required
The account for which the contact should be created.
Example:acct_01j9a43avnfqzbjfch6pygv1td
Request body
Example request
{
"email": "dom@toretto.family",
"first_name": "Dominic",
"last_name": "Toretto",
"metadata": {
"car": "1970 Dodge Charger R/T"
},
"phone_number": "+18015551234"
}Response
Created contact
Example response
{
"email": "dom@toretto.family",
"first_name": "Dominic",
"id": "ctc_01j9dy8mdzfn3r0e8x1tbdrdrf",
"last_name": "Toretto",
"metadata": {
"car": "1970 Dodge Charger R/T"
},
"phone_number": "+18015551234"
}