Skip to contentSkip to navigationSkip to topbar

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(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.

GET/v3/ControlPlane/Configurations

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

Request

list-configurations-request page anchor

Authentication

authentication page anchor
Property nameTypeRequiredPIIDescription
pageSizeinteger

Optional

Not PII

The maximum number of resources to return

Default: 50Minimum: 1Maximum: 1000

pageTokenstring

Optional

Token for pagination


200429500

An array of Intelligence Configurations.

SchemaExample
Property nameTypeRequiredPIIDescriptionChild properties
itemsarray[object]

Optional

The list of Intelligence Configurations owned by this account.


metaobject

Optional

The metadata for Pagination

Retrieve a list of Intelligence ConfigurationsLink to code sample: Retrieve a list of Intelligence Configurations
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 listConfigurations() {
11
const configurations = await client.intelligence.v3.configurations.list({
12
limit: 20,
13
});
14
15
configurations.forEach((c) => console.log(c.accountId));
16
}
17
18
listConfigurations();

Response

Note about this 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": 2
18
}
19
}
20
],
21
"triggers": [
22
{
23
"on": "COMMUNICATION",
24
"parameters": {
25
"count": 3
26
}
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": true
39
},
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": false
80
}
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
}