action payrun_get_employers_by_effective_date { label: "Gets all employers at the specified effective date" description: "Gets links to all employers contained under the authorised application scope for the specified effective date." provider: payrun method: GET path: "/Employers/{EffectiveDate}" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } EffectiveDate: { type: "string" format: "date" } } required: ["Api-Version", "Authorization", "EffectiveDate"] 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" } } } } } } } } } } }