Update Contact
Update Contact
PUT /api/v1/contacts/{uuid}
Update an existing contact. Pass the contact's uuid in the path and include only the fields you want to change. Every field except name can be cleared by sending null or an empty string.
Path Params
Name
Type
Description
uuid
string (required)
Monolith unique identifier for the contact.
Request Body
All fields are optional. Same fields as Create Contact: name, email, title, organization, contact_type, unique_id, description, address, city, state, province, country, postal_code, office_number, mobile_number.
Response
{
"message": "Contact Updated",
"uuid": "wM7K2pQrSt9vXyZbN3hLmK",
"success": true
}Last updated
Was this helpful?