action payrun_get_employer_summary_report_ouput { label: "Runs the employer summary report" description: "Returns the result of the employer summary report for the given query parameters" provider: payrun method: GET path: "/Report/EMPSUM/run" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } ContextDate: { type: "string" format: "date" } EmployerKey: { type: "string" } } required: ["Api-Version", "Authorization", "ContextDate", "EmployerKey"] additionalProperties: false } output: { type: "string" format: "binary" } }