action orthanc_server_get_jobs_id { label: "Get job" description: "Retrieve detailed information about the job whose identifier is provided in the URL: https://book.orthanc-server.com/users/advanced-rest.html#jobs" provider: orthanc_server method: GET path: "/jobs/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { description: "JSON object detailing the job" type: "object" } }