Retrieve a list of Operator Results for the given Transcript.
Retrieve a list of Operator Results for the given Transcript.
Path parameters
-
A 34 character string that uniquely identifies this Transcript.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^GT[0-9a-fA-F]{32}$
.
Query parameters
-
Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
-
How many resources to return in each list page. The default is 50, and the maximum is 1000.
Minimum value is
1
, maximum value is1000
. -
The page index. This value is simply for client state.
Minimum value is
0
. -
The page token. This is provided by the API.
GET
/v2/Transcripts/{TranscriptSid}/OperatorResults
curl \
--request GET 'https://intelligence.twilio.com/v2/Transcripts/{TranscriptSid}/OperatorResults' \
--user "username:password"
Response examples (200)
Read empty
{
"meta": {
"key": "operator_results",
"url": "https://intelligence.twilio.com/v2/Transcripts/GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/OperatorResults?PageSize=50&Page=0",
"page": 0,
"page_size": 50,
"next_page_url": null,
"first_page_url": "https://intelligence.twilio.com/v2/Transcripts/GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/OperatorResults?PageSize=50&Page=0",
"previous_page_url": null
},
"operator_results": []
}
{
"meta": {
"key": "operator_results",
"url": "https://intelligence.twilio.com/v2/Transcripts/GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/OperatorResults?Redacted=true&PageSize=50&Page=0",
"page": 0,
"page_size": 50,
"next_page_url": null,
"first_page_url": "https://intelligence.twilio.com/v2/Transcripts/GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/OperatorResults?Redacted=true&PageSize=50&Page=0",
"previous_page_url": null
},
"operator_results": [
{
"url": "https://intelligence.twilio.com/v2/Transcripts/GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/OperatorResults/LYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"name": "name",
"json_results": {},
"operator_sid": "LYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"extract_match": false,
"operator_type": "conversation_classify",
"transcript_sid": "GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"extract_results": {},
"predicted_label": "predicted_label",
"utterance_match": false,
"match_probability": "0.05",
"normalized_result": "normalized_result",
"utterance_results": [
{}
],
"label_probabilities": {},
"predicted_probability": "0.05",
"text_generation_results": {}
}
]
}