---
title: "Get Task"
method: GET
path: "/finalize/v2/tasks/{task_id}"
tags: ["Finalize Tasks"]
---

# Get Task

`GET /finalize/v2/tasks/{task_id}`

## Path parameters

- `task_id` string, required

## Query parameters

- `include` string

## Response `200`

success

- object
  - `data` object, required
    - `id` string, uuid, required — The UUID of the task record.
    - `active` boolean, required — Denotes if the task is active or not.
    - `agreement_id` string, uuid, nullable, required — The UUID of the parent agreement. Will be null for stand-alone tasks.
    - `approval_type` 'latest_version' | 'text' | 'attachment', nullable, required — The requirements of approval. Will be null for tasks of type GenericTask.
    - `assignee_ids` string[], required — Array of the assignee User UUIDs.
    - `attachment_id` string, uuid, nullable, required — The UUID of the attachment.
    - `author_id` string, uuid, nullable, required — The UUID of the task author.
    - `created_at` string, date-time, required — The ISO 8601 datetime of when the task was created.
    - `due_date` string, date-time, nullable, required — The ISO 8601 datetime of the task due date.
    - `name` string, nullable, required — The name of the task.
    - `position` integer, nullable, required — Denotes the order for "ordered" tasks in which tasks should be completed. Tasks of type StandaloneTask and GenericTask can have a null position.
    - `resolver_id` string, uuid, nullable, required — The UUID of the User that completed the task.
    - `status` 'unreviewed' | 'approved' | 'rejected(deprecated)', required — Indicates the current status of a task.
    - `text` string, required — Information on completing the task.
    - `type` 'ApprovalTask' | 'GenericTask' | 'StandaloneTask', required — Indicates the type of a task.
  - `_embedded` object, required — Includes the full sub-resource objects. Only present if ?include=embedded query parameter is supplied
    - `users` object[], required
      - `id` string, uuid, required — The UUID of the user record.
      - `first_name` string, required — The first name of the user.
      - `last_name` string, required — The last name of the user.
      - `email` string, required — The email of the user.

## Other responses

- `404` — not_found
- `422` — unprocessable_entity

---

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