action orthanc_server_get_queries_id_answers_index_content { label: "Get one answer" description: "Get the content (DICOM tags) of one answer associated with the query/retrieve operation whose identifier is provided in the URL" provider: orthanc_server method: GET path: "/queries/{id}/answers/{index}/content" encoding: json input: { type: "object" properties: { id: { type: "string" } index: { type: "string" } short: { type: "boolean" } simplify: { type: "boolean" } } required: ["id", "index"] additionalProperties: false } output: { description: "JSON object containing the DICOM tags of the answer" type: "object" } }