Delete an Intelligence Configuration
(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/ControlPlane/Configurations/{id}
Base url: https://intelligence.twilio.com (Twilio Intelligence API)
Basic Auth
Property nameTypeRequiredPIIDescription
The unique identifier of the Intelligence Configuration.
Example:
intelligence_configuration_01k6fc25s7epm9qtk8rszbv3q5Pattern: ^intelligence_configuration_[0-7][0-9a-z]{25}$204404500
Intelligence Configuration resource deleted.
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 deleteConfiguration() {11await client.intelligence.v312.configurations("intelligence_configuration_01k6fc25s7epm9qtk8rszbv3q5")13.remove();14}1516deleteConfiguration();