Fetch a specific Operator Result for the given Transcript.
Fetch a specific Operator Result 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}$
. -
A 34 character string that identifies this Language Understanding operator sid.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^LY[0-9a-fA-F]{32}$
.
GET
/v2/Transcripts/{TranscriptSid}/OperatorResults/{OperatorSid}
curl \
--request GET 'https://intelligence.twilio.com/v2/Transcripts/{TranscriptSid}/OperatorResults/{OperatorSid}' \
--user "username:password"
Response examples (200)
{
"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": {}
}