Skip to main content
GET
/
ai
/
conversations
/
{conversation_id}
/
conversations-insights
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const response = await client.ai.conversations.retrieveConversationsInsights('conversation_id');

console.log(response.data);
{
  "data": [
    {
      "id": "<string>",
      "status": "pending",
      "created_at": "2023-11-07T05:31:56Z",
      "conversation_insights": [
        {
          "result": "<string>",
          "insight_id": "<string>"
        }
      ]
    }
  ],
  "meta": {
    "total_pages": 123,
    "total_results": 123,
    "page_number": 123,
    "page_size": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

conversation_id
string
required

Response

Successful Response

data
Data · object[]
required
meta
object
required