Headers
Path Parameters
Query Parameters
New title for the chat
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.
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>"
}New title for the chat
Was this page helpful?