Overview
The Update Contact endpoint lets you modify an existing contact’s details. Only include the fields you want to change. Pass null for optional fields to clear them.
Scope required: contacts:write | Rate limit: 20 requests/min
Request
Body Parameters
All fields are optional, but at least one must be provided.
First name (max 100 characters)
Last name (max 100 characters)
Contact’s job title (max 200 characters, null to clear)
Company name (max 200 characters, null to clear)
Relationship type (see Create Contact for values, null to clear)
Email address (max 200 characters, null to clear)
Phone number (max 50 characters, null to clear)
LinkedIn profile URL (max 500 characters, null to clear)
Example
curl -X PATCH "https://api.mokaru.ai/v1/contacts/clx1234" \
-H "Authorization: Bearer mk_your_key" \
-H "Content-Type: application/json" \
-d '{
"phone": "+1 555-0201",
"relationship": "TEAM_LEAD"
}'
Response
Whether the contact was updated
{
"success": true,
"id": "clx1234..."
}