Skip to main content
Used in: Update Contact

Fields

FieldTypeRequiredDescription
contact_idstring (UUID)YesID of the contact to update
full_namestringNoReplaces the contact’s name
phone_numberstringNoAdds the number or bumps an existing one to verified
contact_emailstringNoAdded if not already present
contact_addressstringNoAdded as a linked property
notestringNoCreates a new note on the contact
tagsstring[]NoAdds new tags only — existing tags are never removed
sourcestringNoEnsures the source option exists and sets it on the contact
contributorsstring[]NoAdds users as participants — skips users already on the contact

Example

{
  "contact_id": "a1b2c3d4-0000-0000-0000-000000000000",
  "phone_number": "5550000002",
  "note": "Called March 19 — interested in selling.",
  "tags": ["follow-up"],
  "contributors": ["Sarah Smith"]
}

Notes

contact_id is required. The request returns 400 if it is missing and 404 if no contact is found with that ID.
All fields other than contact_id are optional. Only fields you provide are changed — this is a patch-style update.
first_name and last_name are accepted but deprecated. Use full_name instead.