action orthanc_server_get_queries_id_answers_index { label: "List operations on an answer" description: "List the available operations on an answer associated with the query/retrieve operation whose identifier is provided in the URL" provider: orthanc_server method: GET path: "/queries/{id}/answers/{index}" encoding: json input: { type: "object" properties: { id: { type: "string" } index: { type: "string" } } required: ["id", "index"] additionalProperties: false } output: { description: "JSON array containing the list of operations" type: "object" } }