import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const insightGroup = await client.ai.conversations.insightGroups.delete(
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);
console.log(insightGroup);{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Delete insight group by ID
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const insightGroup = await client.ai.conversations.insightGroups.delete(
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);
console.log(insightGroup);{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?