Get session transcript
Provides session transcript.
Path Parameters
- sessionId string required
Id of session.
Query Parameters
- deidentify boolean
If true, transcript will be de-identified. De-identified transcript will not contain any personally identifiable information.
- 200
- 403
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
utterances object[]
List of all utterances.
Array [text string requiredText of the utterance.
start integer requiredRelative start time in milliseconds of this utterance in the recording.
end integer requiredRelative end time in milliseconds of this utterance in the recording.
speaker string requiredSpeaker of the utterance. Speakers are labeled with letters, starting with 'A'.
words object[] required
List of words in the utterance.
Array [text string requiredtext of the single word
start integer requiredRelative start time [ms] of this word occurrence in the recording
end integer requiredRelative end time [ms] of this word occurrence in the recording
]]speakerMapping object
Mapping of speakers (present in utterances) to user identifiers. One user identifier can be assigned to multiple speakers.
property name*string
{
"utterances": [
{
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"start": 5000,
"end": 8000,
"speaker": "B",
"words": [
{
"text": "Lorem",
"start": 5000,
"end": 5907
}
]
}
],
"speakerMapping": {
"A": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"B": "15fadcc2-9766-40f3-9826-4cbf00f26fa4"
}
}
Invalid API Key
Transcript for session with given ID wasn't found.