import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
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": "phone_call",
"telnyx_agent_target": "+13128675309",
"telnyx_end_user_target": "+13128675309",
"assistant_id": "assistant-123"
},
"last_message_at": "2025-04-15T13:07:28.764Z",
"name": ""
}
}Update metadata for a specific conversation.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
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": "phone_call",
"telnyx_agent_target": "+13128675309",
"telnyx_end_user_target": "+13128675309",
"assistant_id": "assistant-123"
},
"last_message_at": "2025-04-15T13:07:28.764Z",
"name": ""
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the conversation to update
Successful Update
Show child attributes
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
The datetime the conversation was created.
"2025-04-15T13:07:28.764Z"
Metadata associated with the conversation. Telnyx provides several pieces of metadata, but customers can also add their own.
Show child attributes
{
"telnyx_conversation_channel": "phone_call",
"telnyx_agent_target": "+13128675309",
"telnyx_end_user_target": "+13128675309",
"assistant_id": "assistant-123"
}The datetime of the latest message in the conversation.
"2025-04-15T13:07:28.764Z"
""
Was this page helpful?