action loket_get_employee_photo_by_employee_id { label: "Photo of an employee" description: "__Activity name :__ GetEmployeePhotoByEmployeeId\n\nPhoto of the employee to use as an avatar/profile picture\n\n__Caching:__ This resource changes very infrequently and can be cached for a longer time.\n" provider: loket method: GET path: "/providers/employers/employees/{employeeId}/photo" 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 } }