---
title: "Get task"
method: GET
path: "/v6/tasks/{id}"
tags: ["Tasks"]
---

# Get task

`GET /v6/tasks/{id}`

Get a task for the given id

## Path parameters

- `id` string, required

## Response `200`

Success

- ResponseTaskGetDto
  - `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
  - `error` ErrorItem[]
    - `type` 'UNKNOWN_ERROR' | 'INVALID_TOKEN' | 'EXPIRED_TOKEN' | 'FORBIDDEN' | 'BAD_REQUEST' | 'JSON_ERROR' | 'DUPLICATE' | 'REQUIRED' | 'INVALID_VALUE' | 'NOT_MODIFIABLE' | 'INVALID_FORMAT' | 'NOT_FOUND' — The type of the error. Safe for programmatic use.
    - `message` string — A human-readable message providing more details about the error. Safe for displaying to a user.
    - `param` string — If the error is parameter-specific, the parameter related to the error. This can be used to display a message near the correct form field.

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