action loket_get_sepa_files_by_payroll_run_id { label: "Get a list of SEPA files for a payroll run" description: "__Activity name :__ GetSepaFilesByPayrollRunId\n\nReturns the SEPA file(s) for the specified payroll run." provider: loket method: GET path: "/providers/employers/payrolladministrations/payrollruns/{payrollrunId}/sepafiles" 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 } }