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]=1388
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": "317",
"type": "task_lists",
"attributes": {
"name": "task list name",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "13e137f1ea13773df7c5c24ca4d3450b"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1956"
}
},
"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=1388&page%5Bnumber%5D=1&page%5Bsize%5D=30",
"last": "http://api-test.productive.io/api/v2/task_lists?filter%5Bproject_id%5D=1388&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/320
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": "320",
"type": "task_lists",
"attributes": {
"name": "task list name",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "16334dfe3eaa9adb10d67b68d2944784"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1958"
}
},
"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": "1393"
}
},
"board": {
"data": {
"type": "boards",
"id": "337"
}
}
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "322",
"type": "task_lists",
"attributes": {
"name": "test name",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "34cc0f4d22c3b42a9ca9908b4baeba5d"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1959"
}
},
"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",
"source": {
"pointer": "data/attributes/name"
}
},
{
"status": "422",
"code": "invalid_attribute",
"title": "Invalid Attribute",
"detail": "can't be blank",
"source": {
"pointer": "data/attributes/project"
}
},
{
"status": "422",
"code": "invalid_attribute",
"title": "Invalid Attribute",
"detail": "can't be blank",
"source": {
"pointer": "data/attributes/board"
}
},
{
"status": "422",
"code": "invalid_attribute",
"title": "Invalid Attribute",
"detail": "can't be blank",
"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/325
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": "325",
"type": "task_lists",
"attributes": {
"name": "new name",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "265da28239f15b42a6f664fcd955f93a"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1963"
}
},
"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/326/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": "326",
"type": "task_lists",
"attributes": {
"name": "task list name",
"position": null,
"placement": null,
"archived_at": "2025-11-15T05:18:54.000+01:00",
"email_key": "5110e5ceda04f71ed8ebe66d8ab8124a"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1964"
}
},
"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/327/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": "327",
"type": "task_lists",
"attributes": {
"name": "Milestone313",
"position": null,
"placement": 1010000,
"archived_at": null,
"email_key": "b81ce0551f5850cbb7211063baa82b7a"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1965"
}
},
"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": 328,
"project_id": 1399,
"board_id": 343,
"copy_open_tasks": true,
"copy_assignees": true
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "329",
"type": "task_lists",
"attributes": {
"name": "copy task list",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "75cc4d229eb4e092c7d549d3823ab73f"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1966"
}
},
"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": 330,
"project_id": 1400,
"folder_id": 344,
"copy_open_tasks": true,
"copy_assignees": true
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "331",
"type": "task_lists",
"attributes": {
"name": "copy task list",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "20703677c84278f6f07135be9e2fe562"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1967"
}
},
"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": 332,
"project_id": 1402,
"board_id": 346,
"copy_open_tasks": true,
"copy_assignees": true
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "333",
"type": "task_lists",
"attributes": {
"name": "copy task list",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "50cc80f149bc0df812db49948b2981f9"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1968"
}
},
"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": 334,
"project_id": 1404,
"board_id": 348,
"copy_open_tasks": true,
"copy_assignees": true
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "336",
"type": "task_lists",
"attributes": {
"name": "copy task list",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "27a2261738d780d6695dfe92676c0d41"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1969"
}
},
"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": 337,
"project_id": 1407,
"board_id": 351,
"copy_open_tasks": true,
"copy_assignees": true
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "339",
"type": "task_lists",
"attributes": {
"name": "copy task list",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "f26482990567909c0f7ac39b28b8d9bb"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1970"
}
},
"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/340/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": 354
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "340",
"type": "task_lists",
"attributes": {
"name": "task list name",
"position": null,
"placement": null,
"archived_at": null,
"email_key": "5d429d3d3a38432534165f34aab910bd"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1971"
}
},
"project": {
"meta": {
"included": false
}
},
"board": {
"meta": {
"included": false
}
},
"folder": {
"meta": {
"included": false
}
}
}
},
"meta": {}
}PATCH /api/v2/task_lists/341/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",
"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/342/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": 343
}
}
}Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": {
"id": "342",
"type": "task_lists",
"attributes": {
"name": "task list name",
"position": null,
"placement": 90000,
"archived_at": null,
"email_key": "a6c01d59a96d9e844527569e42aa944d"
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "1973"
}
},
"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 15 Nov 2025