action loket_get_employee_by_employee_id { label: "Details of an employee" description: "__Activity name :__ GetEmployeeByEmployeeId\n\nGet the details of a single employee\n" provider: loket method: GET path: "/providers/employers/employees/{employeeId}" 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 } }