action orthanc_server_get_instances_id_attachments_name_info { label: "Get info about the attachment" description: "Get all the information about the attachment associated with the given instance" provider: orthanc_server method: GET path: "/instances/{id}/attachments/{name}/info" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } id: { type: "string" } name: { type: "string" } } required: ["id", "name"] additionalProperties: false } output: { description: "JSON object containing the information about the attachment" type: "object" } }