action payrun_get_employees_from_pay_schedule_on_effective_date { label: "Get employees from a pay schedule on effective date." description: "Gets links to all employee revisions in the specified pay schedule for the given effective date." provider: payrun method: GET path: "/Employer/{EmployerId}/PaySchedule/{PayScheduleId}/Employees/{EffectiveDate}" 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" } PayScheduleId: { type: "string" } } required: ["Api-Version", "Authorization", "EffectiveDate", "EmployerId", "PayScheduleId"] 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" } } } } } } } } } } }