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

# Delete Conversation

# Delete Conversation

Endpoint for deleting a saved conversation.

## Request Body

| Field            | Type    | Required | Description                      |
| ---------------- | ------- | -------- | -------------------------------- |
| conversation\_id | integer | Yes      | ID of the conversation to delete |

## Responses

| Status | Description          | Content Type     |
| ------ | -------------------- | ---------------- |
| 200    | Conversation deleted | application/json |


## OpenAPI

````yaml POST /delete-conversation
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /delete-conversation:
    post:
      summary: Delete Conversation
      operationId: delete_conversation_delete_conversation_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````