action payrun_get_employer_summary_by_effective_date { label: "Get employer summary by effective date." description: "Gets the employer summary for the specified effective date." provider: payrun method: GET path: "/Employer/{EmployerId}/{EffectiveDate}/Summary" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } EffectiveDate: { type: "string" format: "date" } EmployerId: { type: "string" } } required: ["Api-Version", "Authorization", "EffectiveDate", "EmployerId"] additionalProperties: false } output: { type: "object" } }