action orthanc_server_get_instances_id_header { label: "Get DICOM meta-header" description: "Get the DICOM tags in the meta-header of the DICOM instance. By default, the `full` format is used, which combines hexadecimal tags with human-readable description." provider: orthanc_server method: GET path: "/instances/{id}/header" encoding: json input: { type: "object" properties: { id: { type: "string" } short: { type: "boolean" } simplify: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { description: "JSON object containing the DICOM tags and their associated value" type: "object" } }