Get processing session information
Get processing session information
Path Parameters
- processingId string required
- 200
- 401
- 404
processing object
- application/json
- Schema
- Example (from schema)
Schema
- processingId string
- status string
Status of the processing. One of "Processing", "Done", "Error".
- sessionType string
Type of the session specified when creating the session.
results object
Processing results. Values are populated as they are produced.
transcript object
Transcript of the recorded session. Value becomes available during session processing.
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*stringsummaries object[]
Deprecated - replaced by topics.
Array [summaryType stringtype of generated summary, one of "conversation", "sum_of_sum"
text string]recording object
durationMs integerLength of the recording in milliseconds
namedEntities object[]
Array [entityType string requiredType of detected entity. E.g. of "medical_condition", "organisation", "location", "person_name"
name string requiredsummary stringSummarized description of the entity
]progressNotes object[]
List of progress notes. Each note has a category and text.
Array [category string requiredProgress note category. For example "ClientPresentation", "TherapeuticIntervention", "Plan",...
categoryName stringHuman readable name for progress note category.
text string requiredProgress note text.
formatting object
nestingLevel integerNesting level of the note in a context of all notes in its category. Notes with leve > 0 can be considered as a bulleted list items.
]topics object[]
Array [headline string requiredTopic headline
gist string requiredstart integer requiredRelative start time [ms] of this topic in the recording.
end integer requiredRelative end time [ms] of this topic in the recording.
]errors object[]
List of errors that occurred during processing.
Array [errorMessage string requirederrorCode string requiredError code identifying the problem. See Error codes.
fatal boolean required]
{
"processingId": "ec40b282-8cf3-4659-9976-50d411203c2f",
"status": "Done",
"sessionType": "Soap",
"results": {
"transcript": {
"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"
}
},
"recording": {
"durationMs": 1680060
},
"namedEntities": [
{
"entityType": "person_name",
"name": "Amelia",
"summary": "Amelia was Tony's patient, a 35 year old woman who died on the table."
}
],
"progressNotes": [
{
"category": "ClientPresentation",
"categoryName": "Client Presentation",
"text": "The client is hoping to find a balance between work and life in order to improve his relationships.",
"formatting": {
"nestingLevel": 0
}
}
],
"topics": [
{
"headline": "The client is new to therapy and finding it interesting but not yet comfortable, but the therapist reassures them that it takes time to adjust and most people find it a safe and comfortable place to talk, while also explaining that therapy is unique in that it's two people focusing on one person.",
"gist": "Adjusting to Therapy Process.",
"start": 250,
"end": 32200
}
],
"errors": [
{
"errorMessage": "Cannot access recording file",
"errorCode": "string",
"fatal": false
}
]
}
}
Authentication problem.
Record with given ID wasn't found.