API Documentation
Task Lists ¶
Task Lists ¶
The Task list object represents a task list within the project management system. It sits between Boards and Tasks, meaning it belongs to a board and contains multiple tasks.
You can find out more about task lists in our Help documentation: Task lists
Following diagram shows task lists in our data hierarchy:
Supported filter params
-
id
-
project_id (array)
-
board_id (array)
-
status (active: 1, archived: 2)
Supported relationship filter params
-
board
-
project
GET /api/v2/task_lists?filter[project_id]=1382
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonHeaders
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": [
{
"id": "273",
"type": "task_lists",
"attributes": {
"name": "task list name",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "43afc0dc2bdc2a1335dc25e11db7403b"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1993"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
}
],
"links": {
"first": "http://api-test.productive.io/api/v2/task_lists?filter%5Bproject_id%5D=1382&page%5Bnumber%5D=1&page%5Bsize%5D=30",
"last": "http://api-test.productive.io/api/v2/task_lists?filter%5Bproject_id%5D=1382&page%5Bnumber%5D=1&page%5Bsize%5D=30"
},
"meta": {
"current_page": 1,
"total_pages": 1,
"total_count": 1,
"page_size": 30,
"max_page_size": 200
}
}Get task listsGET/api/v2/task_lists
GET /api/v2/task_lists/276
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonHeaders
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "276",
"type": "task_lists",
"attributes": {
"name": "task list name",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "7636d519d5ee03f459151214a7184fa2"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1995"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}POST /api/v2/task_lists
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"name": "test name"
},
"relationships": {
"project": {
"data": {
"type": "projects",
"id": "1387"
}
},
"board": {
"data": {
"type": "boards",
"id": "293"
}
}
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "278",
"type": "task_lists",
"attributes": {
"name": "test name",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "bf013ae7a5b59aef973a79ce5e94a5f4"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1996"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}POST /api/v2/task_lists
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"name": ""
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"errors": [
{
"status": "422",
"code": "invalid_attribute",
"title": "Invalid Attribute",
"detail": "can't be blank",
"meta": {},
"source": {
"pointer": "data/attributes/name"
}
},
{
"status": "422",
"code": "invalid_attribute",
"title": "Invalid Attribute",
"detail": "can't be blank",
"meta": {},
"source": {
"pointer": "data/attributes/project"
}
},
{
"status": "422",
"code": "invalid_attribute",
"title": "Invalid Attribute",
"detail": "can't be blank",
"meta": {
"if": {}
},
"source": {
"pointer": "data/attributes/board"
}
},
{
"status": "422",
"code": "invalid_attribute",
"title": "Invalid Attribute",
"detail": "can't be blank",
"meta": {
"if": {}
},
"source": {
"pointer": "data/attributes/folder"
}
}
]
}Create a task listPOST/api/v2/task_lists
- name
string(required) Example: Namename
- project_id
number(required) Example: 1project id
- board_id
number(required) Example: 1board id
PATCH /api/v2/task_lists/281
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"name": "new name"
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "281",
"type": "task_lists",
"attributes": {
"name": "new name",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "46147e2df7441b8afc90d2b2ac5425f4"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2000"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}Update a task listPATCH/api/v2/task_lists/{id}
- id
number(required) Example: 1task list id
PATCH /api/v2/task_lists/282/archive
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonHeaders
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "282",
"type": "task_lists",
"attributes": {
"name": "task list name",
"position": null,
"placement": null,
"archived_at": "2026-02-25T05:19:44.000+01:00",
"email_key": "f7b828269f81f04a2d9eb321ba5b2981"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2001"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}Archives a task listPATCH/api/v2/task_lists/{id}/archive
- id
number(required) Example: 1task list id
PATCH /api/v2/task_lists/283/restore
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonHeaders
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "283",
"type": "task_lists",
"attributes": {
"name": "Milestone269",
"position": null,
"placement": 1010000,
"archived_at": null,
"email_key": "62fe7b0a684b96d0880e68e35a28338c"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2002"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}Restores a task listPATCH/api/v2/task_lists/{id}/restore
- id
number(required) Example: 1task list id
POST /api/v2/task_lists/copy
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"name": "copy task list",
"template_id": 284,
"project_id": 1393,
"board_id": 299,
"copy_open_tasks": true,
"copy_assignees": true
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "285",
"type": "task_lists",
"attributes": {
"name": "copy task list",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "31ea6cb8d6e81a38b8e585f928e9000b"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2003"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}POST /api/v2/task_lists/copy
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"name": "copy task list",
"template_id": 286,
"project_id": 1394,
"folder_id": 300,
"copy_open_tasks": true,
"copy_assignees": true
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "287",
"type": "task_lists",
"attributes": {
"name": "copy task list",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "858790e21a50707010fe9c6611095cc1"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2004"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}POST /api/v2/task_lists/copy
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"name": "copy task list",
"template_id": 288,
"project_id": 1396,
"board_id": 302,
"copy_open_tasks": true,
"copy_assignees": true
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "289",
"type": "task_lists",
"attributes": {
"name": "copy task list",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "db22ef87da1e3cb48667dd4f60906049"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2005"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}POST /api/v2/task_lists/copy
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"name": "copy task list",
"template_id": 290,
"project_id": 1398,
"board_id": 304,
"copy_open_tasks": true,
"copy_assignees": true
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "292",
"type": "task_lists",
"attributes": {
"name": "copy task list",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "b5e378e02ef87b52e0e7bfc6327c1eee"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2006"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}POST /api/v2/task_lists/copy
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"name": "copy task list",
"template_id": 293,
"project_id": 1401,
"board_id": 307,
"copy_open_tasks": true,
"copy_assignees": true
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "295",
"type": "task_lists",
"attributes": {
"name": "copy task list",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "dae975bb4a2b6a0e7d23df0975ee4e6f"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2007"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}Copies a task listPOST/api/v2/task_lists/copy
- id
number(required) Example: 1task list id
PATCH /api/v2/task_lists/296/move
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"board_id": 310
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "296",
"type": "task_lists",
"attributes": {
"name": "task list name",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "15c20c42a2aa57d1c034a508cfbd23d3"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2008"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}PATCH /api/v2/task_lists/297/move
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"board_id": "-1"
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"errors": [
{
"status": "422",
"code": "invalid_attribute",
"title": "Invalid Attribute",
"detail": "attribute is invalid",
"meta": {},
"source": {
"pointer": "data/attributes/board_id"
}
}
]
}Moves a task listPATCH/api/v2/task_lists/{id}/move
- id
number(required) Example: 1task list id
PATCH /api/v2/task_lists/298/reposition
Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+jsonBody
{
"data": {
"type": "task_lists",
"attributes": {
"move_before_id": 299
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "298",
"type": "task_lists",
"attributes": {
"name": "task list name",
"position": null,
"placement": 90000,
"archived_at": null,
"email_key": "42473d6976e87199db0b3cf84b22c044"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2010"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}Repoisition a task listPATCH/api/v2/task_lists/{id}/reposition
- id
number(required) Example: 1task list id
Generated by aglio on 25 Feb 2026