action payrun_get_employees_from_employer { label: "Get employees from employer." description: "Get links to all employees for the specified employer." provider: payrun method: GET path: "/Employer/{EmployerId}/Employees" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } EmployerId: { type: "string" } } required: ["Api-Version", "Authorization", "EmployerId"] additionalProperties: false } output: { type: "object" properties: { LinkCollection: { type: "object" properties: { Links: { type: "object" description: "The link collections' links" properties: { Link: { type: "array" items: { properties: { "@href": { type: "string" description: "The links' href" } "@rel": { type: "string" description: "The links' target type" } "@title": { type: "string" description: "The links' title" } } } } } } } } } } }