action loket_get_payroll_run_results_by_payroll_run_id { label: "Get results for a payroll run" description: "__Activity name :__ GetPayrollRunResultsByPayrollRunId \n\nReturns the results for the payroll run\n" provider: loket method: GET path: "/providers/employers/payrolladministrations/payrollruns/{payrollrunId}/results" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } payrollrunId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "payrollrunId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }