action payrun_get_employer_jobs { label: "Gets all jobs relating to the employer." description: "Returns all job information objects for the specified employer." provider: payrun method: GET path: "/Jobs/Employer/{EmployerId}" 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: "string" format: "binary" } }