action orthanc_server_get_queries_id_answers { label: "List answers to a query" description: "List the indices of all the available answers resulting from a query/retrieve operation on some DICOM modality, whose identifier is provided in the URL" provider: orthanc_server method: GET path: "/queries/{id}/answers" encoding: json input: { type: "object" properties: { expand: { type: "string" } id: { type: "string" } short: { type: "boolean" } simplify: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { description: "JSON array containing the indices of the answers, or detailed information about the reported answers (if `expand` argument is provided)" type: "object" } }