action loket_get_actual_working_hours_by_employer_id { label: "List of actual working hours for an employer" description: "__Activity name:__ GetActualWorkingHoursByEmployerId\n \n\nGet the list of actual working hours for an employer\n" provider: loket method: GET path: "/providers/employers/{employerId}/actualworkinghours" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } employerId: { type: "string" format: "uuid" } filter: { type: "string" } orderBy: { type: "string" } pageNumber: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } referenceDate: { type: "string" format: "date" } } required: ["Accept", "Authorization", "employerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }