Skip to contentSkip to navigationSkip to topbar

List Configurations


(information)

Legal information

Conversation Orchestrator, 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 details on AI usage and data, see the AI Nutrition Facts for Real-Time Transcription and Conversation Relay.

Conversation Orchestrator is not a HIPAA Eligible Service or PCI compliant and should not be enabled 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/v2/ControlPlane/Configurations

Base url: https://conversations.twilio.com (base url)

Retrieve a list of Configurations.


Request

list-configuration-request page anchor

Authentication

authentication page anchor
Property nameTypeRequiredPIIDescription
pageSizeinteger

Optional

Not PII

Maximum number of items to return in a single response

Default: 50Example: 50Minimum: 1Maximum: 1000

pageTokenstring

Optional

A URL-safe, base64-encoded token representing the page of results to return

Example: eyJwYWdlIjoyLCJxdWVyeSI6ImJvb2tzIn0=

memoryStoreIdstring

Optional

Filter configurations by Memory Store ID

Example: mem_store_01k1etk2y5f1y9fpe2epfdtvv2Pattern: ^mem_(store|service)_[0-7][0-9a-z]{25}$

200400404429500503

OK

Schema
Property nameTypeRequiredPIIDescriptionChild properties
configurationsarray[object]

Optional

Min items: 0

metaobject

Optional

List ConfigurationsLink to code sample: List 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 listConfiguration() {
11
const configurations = await client.conversations.v2.configurations.list({
12
limit: 20,
13
});
14
15
configurations.forEach((c) => console.log(c.id));
16
}
17
18
listConfiguration();

Response

Note about this response
1
{
2
"configurations": [
3
{
4
"id": "id",
5
"displayName": "My Support Config",
6
"description": "description",
7
"conversationGroupingType": "GROUP_BY_PROFILE",
8
"memoryStoreId": "memoryStoreId",
9
"channelSettings": {},
10
"statusCallbacks": [
11
{
12
"url": "https://www.example.com",
13
"method": "POST"
14
}
15
],
16
"intelligenceConfigurationIds": [
17
"intelligenceConfigurationIds"
18
],
19
"memoryExtractionEnabled": false,
20
"conversationsV1Bridge": {
21
"serviceId": "IS00000000000000000000000000000000"
22
},
23
"createdAt": "2009-07-06T20:30:00Z",
24
"updatedAt": "2009-07-06T20:30:00Z",
25
"version": 1
26
}
27
],
28
"meta": {
29
"key": "key",
30
"pageSize": 20,
31
"previousToken": "previousToken",
32
"nextToken": "nextToken"
33
}
34
}