action loket_get_payroll_process_overview_by_payroll_administration_id { label: "Process Information about a payroll on administration level" description: "__Activity name :__ GetPayrollProcessOverviewByPayrollAdministrationId\n\nGet an overview of the status and possible actions for the specified period, including the preceding and subsequent period. The overview contains information about: payroll runs, payroll tax return and pension.\n__Metadata :__ Possible options for the query string parameters can be acquired (GET) via the `/metadata` endpoint. The URI for this endpoint is `../providers/employers/payrolladministrations/{payrollAdministrationId}/payrollprocessoverview/metadata`.\n\n__Defaults :__ Default values for the query string parameters can be acquired via the `/defaults` endpoint. The URI for this endpoint is `../providers/employers/payrolladministrations/{payrollAdministrationId}/payrollprocessoverview/defaults`.\n" provider: loket method: GET path: "/providers/employers/payrolladministrations/{payrollAdministrationId}/payrollprocessoverview" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } payrollAdministrationId: { type: "string" format: "uuid" } payrollPeriodIdEnd: { type: "integer" format: "int32" } payrollPeriodIdStart: { type: "integer" format: "int32" } } required: ["Accept", "Authorization", "payrollAdministrationId", "payrollPeriodIdStart"] additionalProperties: false } output: { type: "object" additionalProperties: true } }