> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bland.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Conversation

> Delete a specific conversation and all of its associated messages. This action is permanent.

<Info>
  **Enterprise Feature** - SMS is only available on Enterprise plans. Contact your Bland representative for access.
</Info>

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="id" type="string" required>
  The ID of the conversation to delete.
</ParamField>

### Response

<ResponseField name="data" type="object">
  Confirmation message indicating the conversation and messages were deleted.
</ResponseField>

<ResponseField name="data.message" type="string">
  A human-readable success message.
</ResponseField>

<ResponseField name="errors" type="null|array">
  `null` on success, or a list of error objects on failure.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "data": {
      "message": "Conversation and all associated messages deleted successfully"
    },
    "errors": null
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
