Skip to main content
PATCH
/
v1
/
contacts
/
{id}
curl -X PATCH https://api.vozagent.ai/v1/contacts/c1a2b3c4... \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "company": "Updated Company",
    "notes": "Follow up next week"
  }'
{
  "id": "c1a2b3c4-d5e6-f7a8-b9c0-d1e2f3a4b5c6",
  "first_name": "John",
  "last_name": "Doe",
  "email": "john@example.com",
  "phone_number": "+15551234567",
  "company": "Updated Company",
  "notes": "Follow up next week",
  "updated_at": "2024-01-15T11:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.vozagent.ai/llms.txt

Use this file to discover all available pages before exploring further.

Retrieve your API Key from your VozAgent Dashboard.

Path parameters

id
string
required
The unique identifier of the contact to update.

Body parameters

first_name
string
Contact’s first name.
last_name
string
Contact’s last name.
email
string
Contact’s email address.
company
string
Company or business name.
notes
string
Additional notes about the contact.

Response

Returns the updated contact object.
curl -X PATCH https://api.vozagent.ai/v1/contacts/c1a2b3c4... \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "company": "Updated Company",
    "notes": "Follow up next week"
  }'
{
  "id": "c1a2b3c4-d5e6-f7a8-b9c0-d1e2f3a4b5c6",
  "first_name": "John",
  "last_name": "Doe",
  "email": "john@example.com",
  "phone_number": "+15551234567",
  "company": "Updated Company",
  "notes": "Follow up next week",
  "updated_at": "2024-01-15T11:00:00Z"
}