Skip to main content
POST
/
ai
/
conversations
/
insights
JavaScript
import Telnyx from 'telnyx';

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

const insightTemplateDetail = await client.ai.conversations.insights.create({
  instructions: 'instructions',
  name: 'name',
});

console.log(insightTemplateDetail.data);
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "instructions": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "insight_type": "custom",
    "name": "",
    "webhook": "",
    "json_schema": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
instructions
string
required
name
string
required
webhook
string
default:""
json_schema

If specified, the output will follow the JSON schema.

Response

Successful Response

data
InsightTemplateResp · object
required