action credas_get_scan_report_pdf { label: "Returns a detailed report on the analysis that has taken place of a scanned document" provider: credas method: GET path: "/api/images/scan-report-pdf/{scanId}" encoding: json input: { type: "object" properties: { apikey: { type: "string" } scanId: { type: "string" format: "uuid" } } required: ["apikey", "scanId"] additionalProperties: false } output: { type: "string" format: "byte" } }