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. 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. 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)
Basic Auth
Property nameTypeRequiredPIIDescription
Operator Result id (TTID)
Example:
intelligence_operatorresult_01k6fc25s7epm9qtk8rszbv3q5Pattern: ^intelligence_operatorresult_[0-7][0-9a-z]{25}$204404429500
Operator result deleted successfully
1// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function deleteOperatorResult() {11await client.intelligence.v312.operatorResults("intelligence_operatorresult_01k6fc25s7epm9qtk8rszbv3q5")13.remove();14}1516deleteOperatorResult();