Skip to main content

Get Insight Template Group

GET 
/ai/conversations/insight-groups/:group_id

Get insight group by ID

Request

Path Parameters

    group_id uuidrequired

    The ID of the insight group

Responses

200: Successful Response

422: Validation Error

Request samples


curl -L 'https://api.telnyx.com/v2/ai/conversations/insight-groups/:group_id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"description": "string",
"created_at": "2024-07-29T15:51:28.071Z",
"insights": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"instructions": "string",
"created_at": "2024-07-29T15:51:28.071Z",
"insight_type": "custom",
"name": "string",
"webhook": "string",
"json_schema": "string"
}
],
"webhook": "string"
}
}