> ## 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.

# Rename Conversation

# Rename Conversation

Endpoint for renaming a saved conversation.

## Request Body

| Field            | Type    | Required | Description                    |
| ---------------- | ------- | -------- | ------------------------------ |
| conversation\_id | integer | Yes      | ID of the conversation         |
| new\_title       | string  | Yes      | New title for the conversation |

## Responses

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


## OpenAPI

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

````