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

# Delete a delete conversation conversations conversation ID

> Delete a specific conversation.

Delete a specific conversation.

### Path parameters

<ParamField path="conversation_id" type="string" required />

### Response

No response body. Conversation deleted successfully.

### Status codes

| Code  | Meaning                           |
| ----- | --------------------------------- |
| `204` | Conversation deleted successfully |
| `401` | Authentication required           |
| `404` | Conversation not found            |
| `422` | Validation Error                  |
| `429` | Rate limit exceeded               |

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url 'http://localhost:8000/conversations/{conversation_id}' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>
