action payrun_get_employee_secrets { label: "Get all employee secret links" description: "Get all the employee secret links" provider: payrun method: GET path: "/Employer/{EmployerId}/Employee/{EmployeeId}/Secrets" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } EmployeeId: { type: "string" } EmployerId: { type: "string" } } required: ["Api-Version", "Authorization", "EmployeeId", "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" } } } } } } } } } } }