action orthanc_server_get_instances_id_attachments_name { label: "List operations on attachments" description: "Get the list of the operations that are available for attachments associated with the given instance" provider: orthanc_server method: GET path: "/instances/{id}/attachments/{name}" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } id: { type: "string" } name: { type: "string" } } required: ["id", "name"] additionalProperties: false } output: { description: "List of the available operations" type: "object" } }