---
title: "Create a task list"
method: POST
path: "/api/v2/task_lists"
tags: ["Task Lists"]
---

# Create a task list

`POST /api/v2/task_lists`

Creates a task list inside a folder. Requires a `name`, the `project_id`, and the target `folder_id`.

```json
{
  "data": {
    "type": "task_lists",
    "attributes": {
      "name": "Sprint 5",
      "project_id": 31002,
      "folder_id": 7781
    }
  }
}
```

## Headers

- `X-Organization-Id` string, required

## Response `201`

Single task list

## Other responses

- `422` — Unprocessable Entity

---

[API](https://skmtc.dev/productive/apis/api-documentation.md) · [All operations](https://skmtc.dev/productive/apis/api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/productive/api-documentation/revisions/bbf5057edf0d/schema)
