---
title: "Return a list of employee work schedules."
method: GET
path: "/employees/work-schedules"
tags: ["Employees"]
---

# Return a list of employee work schedules.

`GET /employees/work-schedules`

This endpoint returns a list with the **work schedule** sections of the existing employees.

## Query parameters

- `trackAttendance` boolean

## Headers

- `Authorization` string, required

## Response `200`

OK

- object
  - `data` object[]
    - `_id` string — The _id of the Kenjo employee.
    - `mondayWorkingDay` boolean — Indicate if mondays are working days for the employee.
    - `tuesdayWorkingDay` boolean — Indicate if tuesdays are working days for the employee.
    - `wednesdayWorkingDay` boolean — Indicate if wednesdays are working days for the employee.
    - `thursdayWorkingDay` boolean — Indicate if thursdays are working days for the employee.
    - `fridayWorkingDay` boolean — Indicate if fridays are working days for the employee.
    - `saturdayWorkingDay` boolean — Indicate if saturdays are working days for the employee.
    - `sundayWorkingDay` boolean — Indicate if sundays are working days for the employee.
    - `trackAttendance` boolean — The activation status of attendance tracking for the employee.
    - `overtimeSettings` object — Overtime waiver configuration of the work schedule. Sub-fields are omitted when not configured.
      - `waiverActive` boolean — Whether the overtime waiver is active.
      - `waiverType` 'daily' | 'weekly' | 'monthly' — The frequency the waiver applies to.
      - `waiver` number — Overtime waiver value, in minutes.

## Other responses

- `400` — BAD REQUEST. This is a wrong request in the client side due to invalid body or params.
- `401` — UNAUTHORIZED. The Authorization header is incorrect, not provided or the token expired.

---

[API](https://skmtc.net/kenjo/apis/kenjo-api.md) · [All operations](https://skmtc.net/kenjo/apis/kenjo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kenjo/kenjo-api/versions/58772b78268e/schema)
