action orthanc_server_get_patients_id_attachments_name_compressed_data { label: "Get attachment (no decompression)" description: "Get the (binary) content of one attachment associated with the given patient. The attachment will not be decompressed if `StorageCompression` is `true`." provider: orthanc_server method: GET path: "/patients/{id}/attachments/{name}/compressed-data" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } id: { type: "string" } name: { type: "string" } } required: ["id", "name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }