action orthanc_server_get_jobs_id_key { label: "Get job output" description: "Retrieve some output produced by a job. As of Orthanc 1.8.2, only the jobs that generate a DICOMDIR media or a ZIP archive provide such an output (with `key` equals to `archive`)." provider: orthanc_server method: GET path: "/jobs/{id}/{key}" encoding: json input: { type: "object" properties: { id: { type: "string" } key: { type: "string" } } required: ["id", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }