---
title: "List Employee Break Policies"
method: GET
path: "/api/v1/time-tracking/employees/{id}/break-policies"
tags: ["Meal & Rest Breaks", "Public API"]
---

# List Employee Break Policies

`GET /api/v1/time-tracking/employees/{id}/break-policies`

Retrieves break policies assigned to a specific employee. Requires permission to view the target employee.

OAuth Scopes: time_tracking:breaks

## Path parameters

- `id` integer, required

## Query parameters

- `offset` integer
- `limit` integer

## Response `200`

A list of break policies

- object — Additional data for paginated responses
  - `meta` object — Pagination metadata
    - `totalItems` integer, required
    - `offset` integer, required
    - `limit` integer, required
  - `_links` object — Pagination links
    - `prev` object, nullable, required — Link object for the previous page, or null if on the first page
      - `href` string — Full URL for the previous page
    - `next` object, nullable, required — Link object for the next page, or null if on the last page
      - `href` string — Full URL for the next page
  - `data` TimeTrackingTimeTrackingBreakPolicyV1[] — Collection of time tracking break policies
    - `id` string, uuid — Unique identifier for the break policy
    - `name` string — Name of the break policy
    - `description` string, nullable — Optional description of the break policy
    - `allEmployeesAssigned` boolean — Whether all employees are assigned to this break policy
    - `createdAt` string, date-time — ISO 8601 timestamp when the break policy was created
    - `updatedAt` string, date-time, nullable — ISO 8601 timestamp when the break policy was last updated
    - `deletedAt` string, date-time, nullable — ISO 8601 timestamp when the break policy was deleted

## Other responses

- `403` — Forbidden
- `422` — Invalid input

---

[API](https://skmtc.net/bamboohr/apis/bamboohr-api.md) · [All operations](https://skmtc.net/bamboohr/apis/bamboohr-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bamboohr/bamboohr-api/revisions/19ebf391a399/schema)
