DELETE
/
chatbots
/
{chatbotId}
/
contacts
/
{contactId}
curl --request DELETE \
  --url https://api.chatling.ai/v2/chatbots/{chatbotId}/contacts/{contactId} \
  --header 'Authorization: Bearer <token>'
{
    "status": "success"
}

Request parameters

Path

chatbotId
string
required

The chatbot ID.

contactId
string
required

The contact ID.

Response

status
string

The status of the request. Will be success if the request was successful, otherwise error.

{
    "status": "success"
}