---
title: "Query tasks"
method: POST
path: "/v6/tasks/query"
tags: ["Tasks"]
---

# Query tasks

`POST /v6/tasks/query`

Query tasks for the authenticated user with pagination and filtering support

## Request body

- TaskGetParam
  - `cursor` string, nullable — Cursor from the previous paginated response
  - `limit` integer — Page size, i.e. number of items to return per page
  - `filter` TaskFilterParam — Filter for items in the response.
    - `priority` TaskPriorityListFilter — Priority filter
      - `in` string[] — List of values to include.
      - `notIn` string[] — List of values to exclude.
    - `type` TaskTypeListFilter — Type filter
      - `in` string[] — List of values to include.
      - `notIn` string[] — List of values to exclude.
    - `status` EnumStatusListFilter — Status filter
      - `in` string[]
      - `notIn` string[]
      - `equal` 'ACTIVE' | 'INACTIVE' | 'REMOVED'
      - `notEqual` 'ACTIVE' | 'INACTIVE' | 'REMOVED'
      - `greaterThan` 'ACTIVE' | 'INACTIVE' | 'REMOVED'
      - `greaterThanEqual` 'ACTIVE' | 'INACTIVE' | 'REMOVED'
      - `lessThan` 'ACTIVE' | 'INACTIVE' | 'REMOVED'
      - `lessThanEqual` 'ACTIVE' | 'INACTIVE' | 'REMOVED'

## Response `200`

Success

- PaginatedResponseTaskGetDto
  - `result` 'SUCCESS' | 'FAILURE' — The result of the action performed.
  - `data` TaskGetDto[] — The data generated by the action performed.
    - `id` string, required — Id of the task
    - `name` string, required — Name of the task
    - `description` string, required — Long-form description of the task.
    - `shortDescription` string, required — Short-form description of the task
    - `priority` 'URGENT' | 'HIGH' | 'MEDIUM' | 'LOW', required — Priority level of the task
    - `type` 'MESSAGE_REVIEW' | 'TRANSACTION_REVIEW' | 'BANK_ERROR' | 'RULE_REVIEW' | 'CSV_IMPORT_REVIEW', required — Type of the task
    - `dismissable` 'DISMISSABLE' | 'NON_DISMISSABLE', required — Dismissability of the task
    - `status` 'ACTIVE' | 'INACTIVE' | 'REMOVED', required — Status of the task
  - `cursor` ResponseCursor — Cursor to be used in your subsequent paginated request. Only populated if there are more pages available.
    - `after` string — After cursor - Fetches entities after this cursor. Useful for paging forwards.
    - `before` string — Before cursor - Fetches entities before this cursor. Useful for paging backwards.

## Other responses

- `400` — Bad request
- `401` — Not authenticated
- `403` — Not authorized
- `404` — Endpoint not found
- `500` — Internal server error

---

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