DELETE
/
v1
/
sms
/
conversations
/
{id}
Delete Conversation
curl --request DELETE \
  --url https://api.bland.ai/v1/sms/conversations/{id} \
  --header 'authorization: <authorization>'
{
  "data": {
    "message": "Conversation and all associated messages deleted successfully"
  },
  "errors": null
}
Enterprise Feature - SMS is only available on Enterprise plans. Contact your Bland representative for access.

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

id
string
required
The ID of the conversation to delete.

Response

data
object
Confirmation message indicating the conversation and messages were deleted.
data.message
string
A human-readable success message.
errors
null|array
null on success, or a list of error objects on failure.
{
  "data": {
    "message": "Conversation and all associated messages deleted successfully"
  },
  "errors": null
}