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

# Delete a conversation

> Permanently delete a conversation

<ParamField path="conversation_id" type="integer" required>
  Conversation ID.
</ParamField>

Returns `204 No Content`.

## SDK

<CodeGroup>
  ```typescript TypeScript theme={null}
  await client.conversations.delete(91);
  ```

  ```python Python theme={null}
  await client.conversations.delete(91)
  ```
</CodeGroup>
