---
title: "List Blip clockings"
method: POST
path: "/blip/v1/clockings/query"
tags: ["Blip"]
---

# List Blip clockings

`POST /blip/v1/clockings/query`

List clockings for all employees in your organisation.

## Request body

- ListClockingsRequestDto
  - `filters` ListClockingsFilters, required — Filters for the list of blip clockings.
    - `employeeId` string, uuid, required
    - `from` string, date-time
    - `to` string, date-time
  - `continuationToken` string, nullable — The continuation token from the previous response, or `null` for the first page.
  - `pageSize` integer

## Response `200`

OK

- ListResponseDtoClockingDto — A paginated list of items.
  - `items` ClockingDto[], required
    - `id` string, uuid, required
    - `employeeId` string, uuid, required
    - `start` string, date-time, required
    - `end` string, date-time, required
    - `startTimeZone` string, required — The time zone in which the employee clocked in.
    - `endTimeZone` string, required — The time zone in which the employee clocked out.
    - `breaks` ClockingBreakDto[], required
      - `id` string, uuid, required
      - `start` string, date-time, required
      - `end` string, date-time, required
    - `note` string, nullable, required — Any notes associated with the clocking.
  - `continuationToken` string, nullable — The continuation token for the next page, or `null` if this is the last page.

## Other responses

- `401` — Token Expired. Re-authenticate to obtain a new token.
- `403` — Forbidden
- `422` — Validation failed

---

[API](https://skmtc.dev/bright/apis/customer-api.md) · [All operations](https://skmtc.dev/bright/apis/customer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bright/customer-api/revisions/77b0e300c3a5/schema)
