---
title: "List Time Tracking Project Tasks"
method: GET
path: "/api/v1/time-tracking/projects/{projectId}/tasks"
tags: ["Time Tracking", "Public API"]
---

# List Time Tracking Project Tasks

`GET /api/v1/time-tracking/projects/{projectId}/tasks`

Returns a paginated list of tasks for the specified time tracking project. Tasks are filtered by `statuses[]`, which defaults to `active`.

OAuth Scopes: time_tracking:project

## Path parameters

- `projectId` integer, required

## Query parameters

- `statuses[]` string[]
- `page` integer
- `pageSize` integer

## Response `200`

Successfully retrieved tasks for the project.

- object
  - `data` ProjectTimeTrackingTaskV1[], required — Collection of time tracking tasks for a project.
    - `id` integer — The ID of the task.
    - `name` string — The name of the task.
    - `projectId` integer — The ID of the project this task belongs to.
    - `billable` boolean — Whether the task is billable.
    - `createdAt` string, date-time, nullable — ISO 8601 timestamp when the task was created.
    - `updatedAt` string, date-time, nullable — ISO 8601 timestamp when the task was last updated.
    - `deletedAt` string, date-time, nullable — ISO 8601 timestamp when the task was deleted.
  - `meta` object, required
    - `totalItems` integer, required
    - `page` integer, required
    - `pageSize` integer, required
    - `totalPages` integer, required
  - `_links` object, required
    - `prev` object, nullable, required
      - `href` string, uri
    - `next` object, nullable, required
      - `href` string, uri

## Other responses

- `401` — Unauthorized. Missing or invalid authentication.
- `403` — Forbidden. Insufficient permissions.
- `404` — Project not found.
- `422` — A query parameter is invalid.

---

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