Contacts
Update a contact
Updates the specified contact by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
patch/contacts/{id}
Path parameters
idstring required
The ID of the contact to update.
Example:ctc_01j9dy8mdzfn3r0e8x1tbdrdrf
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
Updated 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"
}