---
title: "List all tasks"
method: GET
path: "/tasks"
tags: ["Tasks"]
---

# List all tasks

`GET /tasks`

## Query parameters

- `page_size` integer
- `page_token` string
- `status` 'pending' | 'in_progress' | 'completed' | 'cancelled' | 'on_hold' — Current status of the task
- `assigned_to` string
- `tags` string
- `sort_order` 'created_at_asc' | 'created_at_desc' | 'due_date_asc' | 'due_date_desc' | 'priority_asc' | 'priority_desc' — Sort order for task listing

## Response `200`

Successful response

- object
  - `tasks` Task[]
    - `id` string, uuid, required — Unique identifier for the task
    - `title` string, required — Title of the task
    - `description` string — Detailed description of the task
    - `status` 'pending' | 'in_progress' | 'completed' | 'cancelled' | 'on_hold', required — Current status of the task
    - `priority` 'low' | 'medium' | 'high' | 'critical', required — Priority level of the task
    - `tags` string[] — Tags associated with the task
    - `created_by` string — User who created the task
    - `assigned_to` string — User currently assigned to the task
    - `created_at` string, date-time, required — When the task was created
    - `updated_at` string, date-time, required — When the task was last updated
    - `due_date` string, date-time — When the task is due
    - `completed_at` string, date-time — When the task was completed
  - `next_page_token` string
  - `total_count` integer

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `500` — Internal server error

---

[API](https://skmtc.net/cloudstreet-dev/apis/task-management-api.md) · [All operations](https://skmtc.net/cloudstreet-dev/apis/task-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cloudstreet-dev/task-management-api/versions/2f04582e6dc2/schema)
