curl --request GET \
--url https://services.leadconnectorhq.com/conversations/locations/{locationId}/messages/{messageId}/transcription \
--header 'Authorization: Bearer <token>' \
--header 'Version: <version>'{
"mediaChannel": "1",
"sentenceIndex": "1",
"startTime": "34",
"endTime": "45",
"transcript": "This call may be recorded for quality assurance purposes.",
"confidence": "0.5"
}Get the recording transcription for a message by passing the message id
curl --request GET \
--url https://services.leadconnectorhq.com/conversations/locations/{locationId}/messages/{messageId}/transcription \
--header 'Authorization: Bearer <token>' \
--header 'Version: <version>'{
"mediaChannel": "1",
"sentenceIndex": "1",
"startTime": "34",
"endTime": "45",
"transcript": "This call may be recorded for quality assurance purposes.",
"confidence": "0.5"
}Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.
API Version
2021-04-15 Location ID as string
"tDtDnQdgm2LXpyiqYvZ6"
Message ID as string
"tDtDnQdgm2LXpyiqYvZ6"
Gives the attached recording transcription to the message
Media channel describes the user interaction channel
"1"
Index of the sentence in the transcription
"1"
Start time of the sentence in milliseconds
"34"
End time of the sentence in milliseconds
"45"
Transcript of the sentence
"This call may be recorded for quality assurance purposes."
Confidence of the transcription
"0.5"
Was this page helpful?