Skip to contentSkip to navigationSkip to topbar

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(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/Configurations/{id}

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

Request

delete-configuration-request page anchor

Authentication

authentication page anchor
Property nameTypeRequiredPIIDescription
idstring
required
Not PII

The unique identifier of the Intelligence Configuration.

Example: intelligence_configuration_01k6fc25s7epm9qtk8rszbv3q5Pattern: ^intelligence_configuration_[0-7][0-9a-z]{25}$

204404500

Intelligence Configuration resource deleted.

Delete an Intelligence ConfigurationLink to code sample: Delete an Intelligence Configuration
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 deleteConfiguration() {
11
await client.intelligence.v3
12
.configurations("intelligence_configuration_01k6fc25s7epm9qtk8rszbv3q5")
13
.remove();
14
}
15
16
deleteConfiguration();