Get output from a job

GET /batch-processor/:id/access-link

This endpoint creates links where you can download your batch processing outputs for the given job ID. The API will return HTTP 404 if the job ID does not exist. It returns HTTP 400 if the job status is not finished.

Response definitions

Top-level:

Attribute NameTypeDescriptionExample
idstringThe ID of the job"3ab8faa2-8ba2-4ee6-bd15-003a92c18245"
presetstringThe preset given when submitting the job"recordingId"
statusstringThe status of the job. One of: ["submitted", "processing", "finished", "error"]"finished"
transcriptionlistList of transcript access-links (for transcript and SOAP note jobs)[...]
conceptobjectThe medical concept access-link from SOAP note jobs{...}
soapobjectThe SOAP note outputs access-link from SOAP note jobs{...}
summaryobjectThe summary outputs access-link from summarize job{...}

In the transcription list:

Attribute NameTypeDescriptionExample
formatstringThe filetype of the transcript"txt"
linkstringThe access-link to the output file"https://access-link-url.tld/file.txt"

In the concept object:

Attribute NameTypeDescriptionExample
formatstringThe filetype of the medical concept"json"
linkstringThe access-link to the output file"https://access-link-url.tld/file.json"

In the soap object:

Attribute NameTypeDescriptionExample
formatstringThe filetype of the SOAP note"json"
linkstringThe access-link to the output file"https://access-link-url.tld/file.json"

In the summary object:

Attribute NameTypeDescriptionExample
formatstringThe filetype of the summary"txt"
linkstringThe access-link to the output file"https://access-link-url.tld/file.txt"

Examples