Skip to main content
PUT
/
api
/
messaging
/
contacts
/
{contact_id}
{
  "name": "John Doe Updated",
  "email": "john.updated@example.com",
  "tags": ["VIP", "Customer", "Premium"]
}
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "John Doe Updated",
  "phone_e164": "+255614853618",
  "email": "john.updated@example.com",
  "tags": ["VIP", "Customer", "Premium"],
  "updated_at": "2025-11-27T10:35:00Z"
}
Update an existing contact.
contact_id
string
required
Contact ID
name
string
Contact name
email
string
Email address
tags
array
Array of tag strings

Request Example

{
  "name": "John Doe Updated",
  "email": "john.updated@example.com",
  "tags": ["VIP", "Customer", "Premium"]
}

Success Response (200)

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "John Doe Updated",
  "phone_e164": "+255614853618",
  "email": "john.updated@example.com",
  "tags": ["VIP", "Customer", "Premium"],
  "updated_at": "2025-11-27T10:35:00Z"
}