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