Creates a new contact (recipient) or updates an existing one based on the provided email and phone number combination for the authenticated user.
Request
Body Params application/jsonRequired
{
"first_name": "string",
"last_name": "string",
"email": "user@example.com",
"phone": "string",
"language": "en-US",
"owner_id": "string"
}
Request Code Samples
curl --location '/contacts' \
--header 'Content-Type: application/json' \
--data-raw '{
"first_name": "string",
"last_name": "string",
"email": "user@example.com",
"phone": "string",
"language": "en-US",
"owner_id": "string"
}'
Responses
{
"id": "string",
"first_name": "string",
"last_name": "string",
"email": "string",
"phone": "string",
"owner_id": "string",
"team_id": "string",
"language": "en-US"
}
Modified at 2026-06-30 16:05:10