JavaScript
import Morphik from 'morphik'; const client = new Morphik({ apiKey: 'My API Key', }); const response = await client.chat.updateTitle('chat_id', { title: 'title' }); console.log(response.message);
{ "status": "<string>", "message": "<string>", "title": "<string>" }
Update the title of a chat conversation.
New title for the chat New title for the chat
Successful Response
Response for chat title update endpoint
Was this page helpful?