Skip to contentSkip to navigationSkip to topbar

Delete an Operator


(information)

Legal information

Conversation Intelligence, including the APIs, may use artificial intelligence or machine learning technologies and is subject to the terms of the Predictive and Generative AI/ML Features Addendum(link takes you to an external page). For more details on AI usage and data, see AI Nutrition Facts for Conversation Intelligence.

Conversation Intelligence is not PCI compliant or a HIPAA Eligible Service and should not be used in workflows that are subject to HIPAA or PCI.

Conversations products are only available in the new Twilio Console(link takes you to an external page). If your account hasn't been migrated, you'll be redirected to the legacy Console where these products won't appear.

DELETE/v3/ControlPlane/Operators/{id}

Base url: https://intelligence.twilio.com (Twilio Intelligence API)

Request

delete-operator-request page anchor

Authentication

authentication page anchor
Property nameTypeRequiredPIIDescription
idstring
requiredread-only
Not PII

The unique identifier (TTID) of the Language Operator.

Example: intelligence_operator_01k6fc25s7epm9qtk8rszbv3q5Pattern: ^intelligence_operator_[0-7][0-9a-z]{25}$

204404429500

Language Operator deleted

Delete an OperatorLink to code sample: Delete an Operator
1
// Download the helper library from https://www.twilio.com/docs/node/install
2
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
3
4
// Find your Account SID and Auth Token at twilio.com/console
5
// and set the environment variables. See http://twil.io/secure
6
const accountSid = process.env.TWILIO_ACCOUNT_SID;
7
const authToken = process.env.TWILIO_AUTH_TOKEN;
8
const client = twilio(accountSid, authToken);
9
10
async function deleteOperator() {
11
await client.intelligence.v3
12
.operators("intelligence_operator_01k6fc25s7epm9qtk8rszbv3q5")
13
.remove();
14
}
15
16
deleteOperator();