Merge custom field values into a contact
PUT /v1/contacts/{id}/custom-fields
Merges the supplied values into the contact. Keys you do not mention are
left alone and a null value clears that one key - the same contract the
panel uses, so an integration and a human editing the same contact cannot
wipe each other’s fields. At most 100 keys per contact, each key at most 50
characters. Emits contact.updated. Requires scope contacts:write.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Header Parameters
Section titled “Header Parameters ”Act on this workspace’s shared CRM pool. Membership is verified on every request, so an id you do not belong to falls back to personal scope rather than widening access. Omit it to use your default workspace. Applies to every CRM endpoint, not only the ones that list it here.
Request Body required
Section titled “Request Body required ”object
Custom field values keyed by the fieldKey of a definition from GET /v1/custom-fields. Values may be any JSON scalar. At most 100 keys per contact; each key at most 50 characters.
object
Example
{ "lifetime_value": 4820, "preferred_channel": "email"}Example
{ "values": { "lifetime_value": 5100, "preferred_channel": "email", "churn_risk": null }}Responses
Section titled “ Responses ”Updated contact.
A CRM contact record.
object
Social platform the contact belongs to.
Handle without the leading @.
The contact’s id in your own system. The stable key the batch endpoint upserts on.
CRM pipeline stage.
Lead score 0-100 (higher = hotter). Null when not scored.
True when the score was last set by AI, false for a manual override.
Team member the contact is assigned to.
Workspace member the row is filed under. Differs from the caller in a shared pool.
Custom pipeline board the contact sits on.
Column within pipelineId.
How the contact entered the CRM (OutboundMessage, InboundMessage, Manual, CsvImport, Extension, …).
True once the contact has been soft-deleted or archived.
Custom field values keyed by field key. Null when the contact has none.
object
Attached tags (populated on GET by id, omitted in list responses).
object
Hex color
The request body or parameters failed validation.
Standard error envelope for all v1 error responses.
object
Machine-readable error code.
Human-readable explanation of the error.
Optional structured context (field-level validation errors, etc.).
Example
{ "error": "bad_request", "message": "at least one of name, username, phone is required"}Missing or invalid bearer token.
Standard error envelope for all v1 error responses.
object
Machine-readable error code.
Human-readable explanation of the error.
Optional structured context (field-level validation errors, etc.).
Example
{ "error": "unauthorized", "message": "Invalid bearer principal"}The API key does not have the required scope for this operation.
Standard error envelope for all v1 error responses.
object
Machine-readable error code.
Human-readable explanation of the error.
Optional structured context (field-level validation errors, etc.).
Example
{ "error": "forbidden", "message": "scope contacts:write is required"}The requested resource does not exist or is not owned by the caller.
Standard error envelope for all v1 error responses.
object
Machine-readable error code.
Human-readable explanation of the error.
Optional structured context (field-level validation errors, etc.).
Example
{ "error": "not_found", "message": "contact not found"}