Skip to main content
GET
/
ai
/
conversations
/
insight-groups
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});

// Automatically fetches more pages as needed.
for await (const insightTemplateGroup of client.ai.conversations.insightGroups.retrieveInsightGroups()) {
  console.log(insightTemplateGroup.id);
}
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "insights": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "instructions": "<string>",
          "created_at": "2023-11-07T05:31:56Z",
          "insight_type": "custom",
          "name": "",
          "webhook": "",
          "json_schema": "<string>"
        }
      ],
      "webhook": ""
    }
  ],
  "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.

Query Parameters

page[number]
integer
page[size]
integer

Response

Successful Response

data
InsightTemplateGroupResp · object[]
required
meta
Meta · object
required