Skip to main content
PUT
/
ai
/
conversations
/
insight-groups
/
{group_id}
JavaScript
import Telnyx from 'telnyx';

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

const insightTemplateGroupDetail = await client.ai.conversations.insightGroups.update(
  '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);

console.log(insightTemplateGroupDetail.data);
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "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": ""
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

group_id
string<uuid>
required

The ID of the insight group

Body

application/json
name
string
description
string
webhook
string

Response

Successful Response

data
object
required