---
title: "Get Time Tracking Task"
method: GET
path: "/api/v1/time-tracking/tasks/{id}"
tags: ["Time Tracking", "Public API"]
---

# Get Time Tracking Task

`GET /api/v1/time-tracking/tasks/{id}`

Retrieves a single time tracking task by its ID.

OAuth Scopes: time_tracking:project

## Path parameters

- `id` integer, required

## Response `200`

Successfully retrieved the task.

- ProjectTimeTrackingTaskV1 — A task within a time tracking project. Tasks are sub-organizational units used to further classify hours worked.
  - `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.

## Other responses

- `401` — Unauthorized. Missing or invalid authentication.
- `403` — Forbidden. Insufficient permissions.
- `404` — Task not found.
- `422` — The provided `id` is not a valid integer.

---

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