action payrun_get_employer_summaries_by_effective_date { label: "Get employer summaries at a given effective date." description: "Get links to all employer summaries on specified effective date." provider: payrun method: GET path: "/Employers/{EffectiveDate}/Summary" 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" } } } } } } } } } } }