action loket_get_payroll_run_by_payroll_run_id { label: "Details of a payrollrun" description: "__Activity name :__ GetPayrollRunByPayrollRunId\n\nGet the details of a single payrollrun\n" provider: loket method: GET path: "/providers/employers/payrolladministrations/payrollruns/{payrollrunId}" 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 } }