action loket_get_benify_url_by_employee_id { label: "Get Benify URL for an employee" description: "__Activity name :__ GetBenifyUrlByEmployeeId\n\nGet a URL to access the Benify portal for an employee.\n" provider: loket method: GET path: "/providers/employers/employees/{employeeId}/benifyurl" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } employeeId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "employeeId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }