BetaThe v2 API is in beta — fields and behavior may change without notice. For stable production usage, see the API v1 Reference.

Contacts

Delete a contact

Removes the contact record. Returns the deleted object so you can confirm what was removed.

Endpoint

text
DELETE https://services.chatmount.co/v2/chatbots/:chatbotId/contacts/:contactId

Response

json
{
  "message": "Success",
  "data": {
    "id": "contact_internal_123",
    "external_id": "user_123",
    "name": "John Doe",
    "email": "john@example.com",
    "phonenumber": "+1234567890",
    "custom_attributes": { "department": "Sales" },
    "created_at": 1704067200,
    "updated_at": 1704153600
  }
}

Related