action loket_get_payroll_run_balance_sheet_by_payroll_run_id { label: "Get payroll run balance sheet" description: "__Activity name :__ GetPayrollRunBalanceSheetByPayrollRunId\n\nThis endpoint returns per payroll components, marked as relevant for the general ledge (balance sheet), the sum of the values.\n\nIf for the given payroll period of the payroll run a \"journal profile\" is configured the endpoint also returns the ledger account and costcenter/costunit linked to the given payroll component in the \"journal profile\"\n" provider: loket method: GET path: "/providers/employers/payrolladministrations/payrollruns/{payrollrunId}/BalanceSheet" 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 } }