Retrieve an OperatorResult
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/OperatorResults/{operatorResultId}
Base url: https://intelligence.twilio.com (Twilio Intelligence API)
Operator Result id (TTID)
intelligence_operatorresult_01k6fc25s7epm9qtk8rszbv3q5Pattern: ^intelligence_operatorresult_[0-7][0-9a-z]{25}$Operator Result object.
The output format set on the Operator that generated this result. Determines the structure of the result object.
^(CLASSIFICATION|TEXT|EXTRACTION|JSON)$A unique identifier for the Operator Result. Assigned by Twilio (TTID).
intelligence_operatorresult_01k6fc25s7epm9qtk8rszbv3q5Pattern: ^intelligence_operatorresult_[0-7][0-9a-z]{25}$The ID of the Account that created the Language Operator.
^AC[a-zA-Z0-9]{32}$Reference to the Intelligence Configuration that generated the Operator Result.
The id of the Conversation attached to the Operator Result.
conv_conversation_01k1etk2y5f1y9fpe2epfdtvv2Pattern: ^conv_conversation_[0-7][0-9a-z]{25}$Reference to the Language Operator that generated the Operator Result.
Details about the conditions under which the Operator executed.
The actual result from executing the Language Operator with TEXT output format.
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 fetchOperatorResult() {11const operatorResult = await client.intelligence.v312.operatorResults("intelligence_operatorresult_01k6fc25s7epm9qtk8rszbv3q5")13.fetch();1415console.log(operatorResult.outputFormat);16}1718fetchOperatorResult();
Response
1{2"id": "intelligence_operatorresult_01k6fc25s7epm9qtk8rszbv3q5",3"accountId": "AC00000000000000000000000000000000",4"outputFormat": "JSON",5"intelligenceConfiguration": {6"id": "intelligence_configuration_01kermhm82e5mr98nbeh1hpmbn",7"ruleId": "intelligence_configurationrule_01kermhm81fwfvy7j0f7h7v5mr",8"version": 19},10"conversationId": "conv_conversation_01k1etk2y5f1y9fpe2epfdtvv2",11"operator": {12"id": "intelligence_operator_01kcgy1ew0e9x8re6jq542zt8b",13"version": 1,14"parameters": {15"scale": 516}17},18"dateCreated": "2026-01-15T10:45:30Z",19"referenceIds": [20"conv_communication_01k1etk2y5f1y9fpe2epfdtvv2",21"conv_participant_01k1etx3jbfx88476ccja0889c"22],23"executionDetails": {24"trigger": {25"on": "CONVERSATION_END",26"timestamp": "2026-01-15T10:45:25Z"27},28"communications": {29"first": "conv_communication_01k1etk2y5f1y9fpe2epfdtvv2",30"last": "conv_communication_01k1etk2y5f1y9fpe2epfdtvv9"31},32"channels": [33"VOICE"34],35"participants": [36{37"id": "conv_participant_01k1etx3jbfx88476ccja0889c",38"profileId": "mem_profile_01k6fbz0v4f4e9qtk8p8z7y3w1",39"type": "CUSTOMER"40},41{42"id": "conv_participant_01k1etx3jbfx88476ccja0889d",43"type": "HUMAN_AGENT"44}45],46"resolvedContext": {47"memory": {48"profileId": "mem_profile_00000000000000000000000000",49"memoryStoreId": "mem_store_00000000000000000000000000"50},51"knowledge": {52"sources": [53{54"baseId": "know_knowledgebase_00000000000000000000000000",55"sourceId": "know_knowledge_00000000000000000000000000"56}57]58}59}60},61"result": {62"score": 5,63"explanation": "The agent followed the script closely and addressed all key points effectively."64}65}