import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const insightTemplateGroupDetail = await client.ai.conversations.insightGroups.insightGroups({
name: 'name',
});
console.log(insightTemplateGroupDetail.data);{
"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": ""
}
}Create a new insight group
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const insightTemplateGroupDetail = await client.ai.conversations.insightGroups.insightGroups({
name: 'name',
});
console.log(insightTemplateGroupDetail.data);{
"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": ""
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Show child attributes
Show child attributes
custom, default If specified, the output will follow the JSON schema.
Was this page helpful?