Check out our upcoming events and meetups! View events →
Update metadata for a specific conversation.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const conversation = await client.ai.conversations.update('conversation_id');
console.log(conversation.data);{
"data": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"created_at": "2025-04-15T13:07:28.764Z",
"metadata": {
"telnyx_conversation_channel": "sms",
"telnyx_agent_target": "+13128675309",
"telnyx_end_user_target": "+13128675309",
"assistant_id": "assistant-123"
},
"last_message_at": "2025-04-15T13:07:28.764Z",
"name": ""
}
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the conversation to update
Metadata associated with the conversation. Set ai_disabled to true to stop AI from responding to messages (e.g., when a human agent takes over). Set to false to re-enable AI responses.
Show child attributes
Successful Update
Show child attributes
Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const conversation = await client.ai.conversations.update('conversation_id');
console.log(conversation.data);{
"data": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"created_at": "2025-04-15T13:07:28.764Z",
"metadata": {
"telnyx_conversation_channel": "sms",
"telnyx_agent_target": "+13128675309",
"telnyx_end_user_target": "+13128675309",
"assistant_id": "assistant-123"
},
"last_message_at": "2025-04-15T13:07:28.764Z",
"name": ""
}
}