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