action orthanc_server_get_queries_id_query { label: "Get original query arguments" description: "Get the original DICOM filter associated with the query/retrieve operation whose identifier is provided in the URL" provider: orthanc_server method: GET path: "/queries/{id}/query" encoding: json input: { type: "object" properties: { id: { type: "string" } short: { type: "boolean" } simplify: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { description: "Content of the original query" type: "object" } }