Retrieve a list of Operator Versions
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/Operators/{id}/Versions
Base url: https://intelligence.twilio.com (Twilio Intelligence API)
Retrieve a paginated list of all versions for a given Language Operator.
The unique identifier (TTID) of the Language Operator.
intelligence_operator_01k6fc25s7epm9qtk8rszbv3q5Pattern: ^intelligence_operator_[0-7][0-9a-z]{25}$The maximum number of resources to return
50Minimum: 1Maximum: 1000Token for pagination
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 listOperatorVersions() {11const versions = await client.intelligence.v312.versions("intelligence_operator_01k6fc25s7epm9qtk8rszbv3q5")13.list({ limit: 20 });1415versions.forEach((v) => console.log(v.version));16}1718listOperatorVersions();
Response
1{2"items": [3{4"version": 5,5"status": "PREVIEW",6"dateCreated": "2026-02-10T14:00:00Z"7},8{9"version": 4,10"status": "ACTIVE",11"dateCreated": "2026-01-15T10:45:30Z"12},13{14"version": 3,15"status": "DEPRECATED",16"dateDeprecated": "2026-01-10T00:00:00Z",17"retirementDate": "2026-04-10T00:00:00Z",18"dateCreated": "2025-11-01T08:00:00Z"19},20{21"version": 2,22"status": "RETIRED",23"dateDeprecated": "2025-09-01T00:00:00Z",24"dateRetired": "2025-12-01T00:00:00Z",25"dateCreated": "2025-06-15T12:00:00Z"26}27],28"meta": {29"key": "items",30"pageSize": 431}32}