action orthanc_server_get_patients_id_media { label: "Create DICOMDIR media" description: "Synchronously create a DICOMDIR media containing the DICOM patient whose Orthanc identifier is provided in the URL. This flavor is synchronous, which might *not* be desirable to archive large amount of data, as it might lead to network timeouts. Prefer the asynchronous version using `POST` method." provider: orthanc_server method: GET path: "/patients/{id}/media" encoding: json input: { type: "object" properties: { extended: { type: "string" } filename: { type: "string" } id: { type: "string" } transcode: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }