action orthanc_server_get_series_id_archive { label: "Create ZIP archive" description: "Synchronously create a ZIP archive containing the DICOM series 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: "/series/{id}/archive" encoding: json input: { type: "object" properties: { filename: { type: "string" } id: { type: "string" } transcode: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }