Retrieve a list of Intelligence Configurations
(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.
GET/v3/ControlPlane/Configurations
Base url: https://intelligence.twilio.com (Twilio Intelligence API)
Basic Auth
Property nameTypeRequiredPIIDescription
The maximum number of resources to return
Default:
50Minimum: 1Maximum: 1000Token for pagination
200429500
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 listConfigurations() {11const configurations = await client.intelligence.v3.configurations.list({12limit: 20,13});1415configurations.forEach((c) => console.log(c.accountId));16}1718listConfigurations();
Response
1{2"items": [3{4"accountId": "AC00000000000000000000000000000000",5"id": "intelligence_configuration_01kermhm82e5mr98nbeh1hpmbn",6"displayName": "real-time-intelligence-config",7"description": "Intelligence configuration to trigger real-time script adherence operator",8"version": 1,9"rules": [10{11"id": "intelligence_configurationrule_01kermhm81fwfvy7j0f7h7v5mr",12"operators": [13{14"id": "intelligence_operator_01kcgy1ew0e9x8re6jq542zt8b",15"version": 4,16"parameters": {17"scale": 218}19}20],21"triggers": [22{23"on": "COMMUNICATION",24"parameters": {25"count": 326}27}28],29"actions": [30{31"type": "WEBHOOK",32"method": "POST",33"url": "https://my-webhook-endpoint.com/rule-action"34}35],36"context": {37"memory": {38"enabled": true39},40"knowledge": {41"bases": [42"knowledge_base_id"43]44}45}46}47],48"dateCreated": "2026-01-12T08:18:17Z",49"dateUpdated": "2026-01-12T08:18:17Z"50},51{52"accountId": "AC00000000000000000000000000000000",53"id": "intelligence_configuration_01kermhm92e5mr98nbeh1hpmbz",54"displayName": "post-call-analytics-config",55"description": "Intelligence configuration for post-call analytics",56"version": 2,57"rules": [58{59"id": "intelligence_configurationrule_01kermhm91fwfvy7j0f7h7v5ms",60"operators": [61{62"id": "intelligence_operator_01kcgy1ew0e9x8re6jq542zt9c"63}64],65"triggers": [66{67"on": "CONVERSATION_END"68}69],70"actions": [71{72"type": "WEBHOOK",73"method": "POST",74"url": "https://my-webhook-endpoint.com/analytics"75}76],77"context": {78"memory": {79"enabled": false80}81}82}83],84"dateCreated": "2026-01-10T10:30:00Z",85"dateUpdated": "2026-01-11T14:22:00Z"86}87],88"meta": {89"key": "items",90"pageSize": 2,91"nextToken": "next_page_token_example"92}93}