---
title: "Get task by ID"
method: GET
path: "/v1/tasks/{taskId}"
tags: ["Tasks"]
---

# Get task by ID

`GET /v1/tasks/{taskId}`

Retrieve a specific task by its ID

## Path parameters

- `taskId` string, required

## Response `200`

Task retrieved successfully

- TaskResponseDto
  - `id` string, required — Unique identifier for the task
  - `title` string, required — Task title
  - `description` string — Task description
  - `status` 'todo' | 'in_progress' | 'done' | 'blocked', required — Task status
  - `createdAt` string, date-time, required — Task creation timestamp
  - `updatedAt` string, date-time, required — Task last update timestamp
  - `taskTemplateId` object, nullable — Task template ID

## Other responses

- `403` — Forbidden - Not assigned to this task
- `404` — Task not found

## Changes

- **2026-03-05** `946edaa856a9` — 1 warning, 1 info
  - deleted the `header` request parameter `X-Organization-Id`
  - added the non-success response with the status `403`

[Change history](https://skmtc.dev/om-network/apis/betayum-api/changes/v1/tasks/:taskId/get.md)

---

[API](https://skmtc.dev/om-network/apis/betayum-api.md) · [All operations](https://skmtc.dev/om-network/apis/betayum-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/om-network/betayum-api/revisions/ac8d1e4e2e79/schema)
