Update a person

Update an existing person. Only provide fields you want to change - all fields are optional.

Partial Updates:

  • Only include fields you want to update
  • Omitted fields will remain unchanged
  • To clear a field, send null or empty string

Tag Handling:

  • Use mergeTags=true to add tags without removing existing ones
  • Use mergeTags=false (or omit) to replace all tags
  • For more control, use the dedicated tag endpoints: /people/{id}/tags/apply and /people/{id}/tags/delete

Examples:

Update Name and Stage:

{
  "firstName": "Jane",
  "stage": "Qualified"
}

Add Tags (with mergeTags=true):

{
  "tags": ["buyer", "active"]
}

Replace All Tags (with mergeTags=false or omitted):

{
  "tags": ["archived"]
}
Language
Credentials
Bearer
JWT
URL
Click Try It! to start a request and see the response here!