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

# Get tasks

`GET /tasks`

Returns a list of tasks.

## Query parameters

- `Offset` integer
- `Limit` integer
- `MatterId` string
- `IsCompleted` boolean
- `UpdatedSince` integer
- `LastUpdated` string, date-time

## Response `200`

When request is successful. Returns a list of 'Task' objects.

- TaskPagedCollection
  - `id` string, nullable
  - `href` string, nullable
  - `relation` string, nullable
  - `method` string, nullable
  - `self` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `value` Task[], nullable
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
    - `self` Link
      - `id` string, nullable
      - `href` string, nullable
      - `relation` string, nullable
      - `method` string, nullable
    - `matter` Link
      - `id` string, nullable
      - `href` string, nullable
      - `relation` string, nullable
      - `method` string, nullable
    - `parentTask` Link
      - `id` string, nullable
      - `href` string, nullable
      - `relation` string, nullable
      - `method` string, nullable
    - `createdBy` Link
      - `id` string, nullable
      - `href` string, nullable
      - `relation` string, nullable
      - `method` string, nullable
    - `completedBy` Link
      - `id` string, nullable
      - `href` string, nullable
      - `relation` string, nullable
      - `method` string, nullable
    - `lastUpdatedBy` Link
      - `id` string, nullable
      - `href` string, nullable
      - `relation` string, nullable
      - `method` string, nullable
    - `assignees` Link[], nullable — The staff member(s) assigned to the task.
      - `id` string, nullable
      - `href` string, nullable
      - `relation` string, nullable
      - `method` string, nullable
    - `subTasks` Link[], nullable — The tasks associated to the task.
      - `id` string, nullable
      - `href` string, nullable
      - `relation` string, nullable
      - `method` string, nullable
    - `subject` string, nullable — The subject - a short description of the task.
    - `note` string, nullable — Notes on the task.
    - `categories` string[], nullable — Categories for the task.
    - `dueDate` string, date-time, nullable — **Deprecated.** Use `DueDateOnly` instead. The due date of the task in UTC.
    - `dueDateOnly` string, date-time, nullable — The due date of the task. The time portion will always be set to 00:00:00 and should be ignored. Only the date portion is relevant.
    - `completedDate` string, date-time, nullable — **Deprecated.** Use `CompletedDateOnly` instead. When the task was completed in UTC.
    - `completedDateOnly` string, date-time, nullable — The date when the task was completed. The time portion will always be set to 00:00:00 and should be ignored. Only the date portion is relevant.
    - `createdDate` string, date-time, nullable — **Deprecated.** Use `CreatedDateOnly` instead. When the task was created in UTC.
    - `createdDateOnly` string, date-time, nullable — The date when the task was created. The time portion will always be set to 00:00:00 and should be ignored. Only the date portion is relevant.
    - `isCompleted` boolean — True when the task is completed.
    - `isDeleted` boolean — True when the task is deleted.
    - `lastUpdated` integer — Last updated timestamp.
    - `duration` string, nullable — Duration of the task in ISO 8601 duration format.
  - `offset` integer, nullable
  - `limit` integer, nullable
  - `size` integer
  - `first` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `previous` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `next` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `last` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable

## Other responses

- `403` — When tasks cannot be returned for the authenticated client.

---

[API](https://skmtc.net/smokeball/apis/api.md) · [All operations](https://skmtc.net/smokeball/apis/api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/smokeball/api/revisions/197984da9b42/schema)
