---
title: "List Timesheet Entries"
method: GET
path: "/api/v1/time_tracking/timesheet_entries"
tags: ["Time Tracking", "Public API"]
---

# List Timesheet Entries

`GET /api/v1/time_tracking/timesheet_entries`

Returns timesheet entries for all employees, or a filtered subset, within the specified date range. Results include both clock and hour entry types. Dates must fall within the last 365 days and are interpreted in the company timezone.

OAuth Scopes: time_tracking

## Query parameters

- `start` string, date, required
- `end` string, date, required
- `employeeIds` string

## Response `200`

Returns the matching timesheet entries grouped by employee.

- EmployeeTimesheetEntryTransformer[] — Class EmployeeTimesheetEntryCollectionTransformer
  - `id` integer — Timesheet entry ID
  - `employeeId` integer — Employee ID
  - `type` string — Entry type
  - `date` string, date — Date of the timesheet
  - `start` string, date-time, nullable — Start time
  - `end` string, date-time, nullable — End time
  - `timezone` string, nullable — Timezone
  - `hours` number, float, nullable — Hours worked
  - `note` string, nullable — Note
  - `projectInfo` ProjectInfoApiTransformer — Project information data representation
    - `project` object — Project information
      - `id` integer — Project ID
      - `name` string — Project name
    - `task` object, nullable — Task information
      - `id` integer — Task ID
      - `name` string — Task name
  - `approvedAt` string, date-time, nullable — Approved time
  - `approved` boolean — Whether the timesheet entry is approved
  - `createdAt` string, date-time — Created time
  - `updatedAt` string, date-time, nullable — Updated time

## Other responses

- `400` — Bad request parameters - invalid dates, date range exceeds 365 days, or malformed employeeIds.
- `401` — Unauthorized. Invalid API credentials.
- `403` — Insufficient user permissions or API access is not turned on.
- `500` — Server error.

---

[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)
