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
{
"operator_results": [],
"meta": {
"page": 0,
"page_size": 50,
"first_page_url": "https://intelligence.twilio.com/v2/Transcripts/GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/OperatorResults?PageSize=50&Page=0",
"previous_page_url": null,
"url": "https://intelligence.twilio.com/v2/Transcripts/GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/OperatorResults?PageSize=50&Page=0",
"next_page_url": null,
"key": "operator_results"
}
}
{
"operator_results": [
{
"operator_type": "conversation_classify",
"name": "name",
"operator_sid": "LYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"extract_match": false,
"match_probability": "0.05",
"normalized_result": "normalized_result",
"utterance_results": [
{}
],
"utterance_match": false,
"predicted_label": "predicted_label",
"predicted_probability": "0.05",
"label_probabilities": {},
"extract_results": {},
"text_generation_results": {},
"json_results": {},
"transcript_sid": "GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://intelligence.twilio.com/v2/Transcripts/GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/OperatorResults/LYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}
],
"meta": {
"page": 0,
"page_size": 50,
"first_page_url": "https://intelligence.twilio.com/v2/Transcripts/GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/OperatorResults?Redacted=true&PageSize=50&Page=0",
"previous_page_url": null,
"url": "https://intelligence.twilio.com/v2/Transcripts/GTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/OperatorResults?Redacted=true&PageSize=50&Page=0",
"next_page_url": null,
"key": "operator_results"
}
}