Contacts
Sessions
AI Phone Agents
AI Email
AI WhatsApp
AI Outbound Sequencing
AI Training
Customer Insights
Groups (teams)
Webhooks
Contacts
Update a contact
PATCH
/
contacts
/
{contact_id}
curl --request PATCH \
--url https://api.open.cx/contacts/{contact_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"contact": {
"email": "jsmith@example.com",
"phone": "<string>",
"name": "<string>",
"custom_data": {}
}
}'
This response has no body data.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Was this page helpful?
curl --request PATCH \
--url https://api.open.cx/contacts/{contact_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"contact": {
"email": "jsmith@example.com",
"phone": "<string>",
"name": "<string>",
"custom_data": {}
}
}'
This response has no body data.
Assistant
Responses are generated using AI and may contain mistakes.