Editing Contact
Edit the fields of a contact. You can send either a single object or an array of objects.
PATCH
/api/contacts
Body Parameters
contact_id
String
Required
Id of contact to update
first_name
String
edit the first name of the contact
last_name
String
edit the last name of the contact
String
edit the email of the contact
phone
Integer
edit the phone of the contact
company
String
edit the company that contact works at
job_title
String
edit the job title of the contact
notes
String
edit any notes attached to the contact
Request
[
{
"contact_id": "12345678901234567890",
"notes": "Intrested in new platform"
}
]
Bulk Request
[
{
"contact_id": "12345678901234567890",
"notes": "Intrested in new platform"
},
{
"contact_id": "23456789012345678902",
"notes": "Intrested in new platform"
}
]
Response:
Contact
Object
all details of the edited contact contact
Response
[
{
"id": "12345678901234567890",
"first_name": "John",
"last_name": "Doe",
"email": "johndoe@example.com",
"phone": "+1234567890",
"company": "Example Inc.",
"job_title": "Sales Manager",
"notes": "Intrested in new platform"
}
]