Skip to contentSkip to navigationSkip to topbar

Delete an OperatorResult


(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/OperatorResults/{operatorResultId}

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

Request

delete-operator-result-request page anchor

Authentication

authentication page anchor
Property nameTypeRequiredPIIDescription
operatorResultIdstring
required
Not PII

Operator Result id (TTID)

Example: intelligence_operatorresult_01k6fc25s7epm9qtk8rszbv3q5Pattern: ^intelligence_operatorresult_[0-7][0-9a-z]{25}$

204404429500

Operator result deleted successfully

Delete an OperatorResultLink to code sample: Delete an OperatorResult
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 deleteOperatorResult() {
11
await client.intelligence.v3
12
.operatorResults("intelligence_operatorresult_01k6fc25s7epm9qtk8rszbv3q5")
13
.remove();
14
}
15
16
deleteOperatorResult();