Patch contact fields
Partial-updates the contact: resolves pipeline stage / status pairs, normalizes phone numbers (rejecting provisioned org SMS numbers), records pipeline transitions, logs manual events with field-level diffs, and emits contact_updated. Used by the inline contact-edit panel.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
New pipeline status name; resolved alongside pipelineStage and recorded as a pipeline transition.
Stage _id. null clears the stage; legacy status updates without a resolvable stage fall back to null.
Optional pipeline _id scoping stage/status resolution.
Replacement phone-number list; normalized to E.164 and rejected if any value is a provisioned org SMS number.
Response
Contact updated
true {
"_id": "64f0a1b2c3d4e5f6a7b8c9d0",
"firstName": "Jane",
"lastName": "Doe",
"phoneNumber": [
{
"value": "+14165550100",
"isPrimary": true
}
],
"secondaryPhoneNumber": [],
"email": "jane.doe@example.com",
"status": "New Lead",
"pipelineId": "64f0a1b2c3d4e5f6a7b8c9d1",
"pipelineStage": "64f0a1b2c3d4e5f6a7b8c9d2",
"organizationId": "64f0a1b2c3d4e5f6a7b8c9d3",
"userId": "64f0a1b2c3d4e5f6a7b8c9d4",
"createdBy": "64f0a1b2c3d4e5f6a7b8c9d4",
"assignees": ["64f0a1b2c3d4e5f6a7b8c9d4"],
"createdAt": "2026-05-01T14:30:00.000Z",
"updatedAt": "2026-05-15T09:12:00.000Z"
}