action orthanc_server_get_series_id_attachments { label: "List attachments" description: "Get the list of attachments that are associated with the given series" provider: orthanc_server method: GET path: "/series/{id}/attachments" encoding: json input: { type: "object" properties: { full: { type: "string" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { description: "JSON array containing the names of the attachments" type: "object" } }