---
title: "Get all checklists for a parent task"
method: GET
path: "/v1/tasks/{taskId}/checklists"
tags: ["Tasks Checklist"]
---

# Get all checklists for a parent task

`GET /v1/tasks/{taskId}/checklists`

Fetch checklists for the given parent task with proper ordering

## Path parameters

- `taskId` integer, required

## Response `200`

Checklists fetched successfully

- ApiSuccessResponseListTaskCheckListDto — Standard API success response structure
  - `success` boolean — Indicates if the operation was successful
  - `message` string — Message describing the result of the operation
  - `code` integer — HTTP status code of the response
  - `data` TaskCheckListDto[] — Payload containing the response data
    - `tenantId` integer
    - `checkListId` integer
    - `checkListName` string
    - `completed` boolean
    - `parentId` integer
    - `taskId` integer
    - `subtaskId` integer
    - `createdBy` UserMinimalDto
      - `userId` integer
      - `firstName` string
      - `email` string
      - `profilePicURL` string
      - `profilePicColor` string
      - `provider` string
      - `role` OrgRoleDto
        - `orgRoleId` integer
        - `roleName` string
    - `modifiedBy` UserMinimalDto
      - `userId` integer
      - `firstName` string
      - `email` string
      - `profilePicURL` string
      - `profilePicColor` string
      - `provider` string
      - `role` OrgRoleDto
        - `orgRoleId` integer
        - `roleName` string
    - `assignee` UserMinimalDto
      - `userId` integer
      - `firstName` string
      - `email` string
      - `profilePicURL` string
      - `profilePicColor` string
      - `provider` string
      - `role` OrgRoleDto
        - `orgRoleId` integer
        - `roleName` string
    - `orderIndex` integer
    - `parent` boolean
  - `timestamp` string, date-time — Timestamp of the response

---

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