Your API key for authentication. Prefix with Bearer .
Your access token for authentication.
Path Parameters
The unique identifier of the contact you want to update.
Body
The new name for the contact.
The new email address for the contact.
A new array of phone numbers. This will replace the existing array.
A new array of tags. This will replace the existing array.
{
"contact_name": "John A. Doe",
"tags": [
"tag1",
"updated_tag"
]
}
Response
Returns the status.
{
"responseCode":2000,
"message":"Contact updated successfully",
"data":{}
}