Get transcription by Message ID
GET/conversations/locations/:locationId/messages/:messageId/transcription
Get the recording transcription for a message by passing the message id
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
Location ID as string
messageId stringrequired
Message ID as string
Gives the attached recording transcription to the message
- application/json
- Schema
- Example (auto)
Schema
mediaChannelnumberrequired
Media channel describes the user interaction channel
sentenceIndexnumberrequired
Index of the sentence in the transcription
startTimenumberrequired
Start time of the sentence in milliseconds
endTimenumberrequired
End time of the sentence in milliseconds
transcriptstringrequired
Transcript of the sentence
confidencenumberrequired
Confidence of the transcription
{
"mediaChannel": "1",
"sentenceIndex": "1",
"startTime": "34",
"endTime": "45",
"transcript": "This call may be recorded for quality assurance purposes.",
"confidence": "0.5"
}