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[...]
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 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