The ID of the contact to update.
The ID of the user that owns this contact record.
The ID of the company this contact belongs to.
The contact's job title.
The ID of the contact that this contact reports to.
An array of email objects. Each email object should contain two keys: email and is_primary, as described here
[ { "email": <email>, "is_primary": "<is this the primary email?>" } ]
An array of phone objects. Each phone object should contain three keys: number, extension, and type, as described here
[ { "number": <phone number with country code>, "extension": "<optional extension>", "type": "<phone number type>", } ]
An object containing the address for the contact with the following structure:
{ "street": "<street>", "city": "<city>", "state": "<state>", "postal_code": "<postal code>" }
An array of custom field objects. Each custom field object should contain two keys: id and value. id is the id of a custom field definition, and value is the value to be set to that custom field for this contact.
[ { "id": <custom field definition id>, "value": "<custom field value>" } ]
No Content