Aitomatic DXA Factory User Guide
Aitomatic API Documentation
Aitomatic API Documentation
  • API Endpoints
  • Authentication
  • Domain-Expert Agent (DXA)
    • Get all DXAs
  • APLLY
    • ChatLLM
      • GET List Conversations
      • CREATE a Conversation
      • RENAME a Conversation
      • DELETE a Conversation
      • GET Conversation Messages
      • SEND Message (sync)
Powered by GitBook
On this page
  • Description
  • Request body:
  • Response:
  • Example request
  1. APLLY
  2. ChatLLM

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" 
         } 
     }
'

PreviousCREATE a ConversationNextDELETE a Conversation

Last updated 4 months ago