v1
latestOpenAPI 3.0.12026-07-266184114.0 KBContacts
Update a contact
Update an existing contact (Permitted scopes: fax:all:edit)
put/accounts/self/contacts/{contact_id}
Path parameters
contact_idstring required
Contact ID
Request body
Example request
{
"name": "Jane Smith",
"fax_number": "+12025559999",
"email": "jane.smith@example.com",
"cellphone": "+12025559998",
"phone": "+12025559997",
"notes": "Updated contact information",
"groups": [
"engineering"
]
}Response
Response containing a single contact object
Example response
{
"id": "5f7a8b9c0d1e2f3a4b5c6d7e",
"name": "John Doe",
"fax_number": "+12025551234",
"groups": [
"sales",
"department 001"
],
"email": "john.doe@example.com",
"cellphone": "+12025551235",
"phone": "+12025551236",
"notes": "VIP client, prefers email communication",
"creation_date": "2024-01-15T10:30:00Z",
"modification_date": "2024-03-20T14:45:00Z"
}