RENAME a Conversation

Description

Rename a conversation.

Request body:

  • conversation_id (string): ID of the conversation

Response:

  • status: "success"

  • conversation: Object containing id and conversation_id

Example request

curl -X PUT '{api_enpoint}/conversations/{conversation_id}' \
     -H 'Content-Type: application/json' \
     -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
     -d '
     { 
         "meta_data": { 
             "name": "another conversation" 
         } 
     }
'

Last updated