View the tasks in a List. Responses are limited to 100 tasks per page. You can only view task information of tasks you can access.
This endpoint only includes tasks where the specified list_id
is their home List. Tasks added to the list_id
with a different home List are not included in the response.
archived | boolean |
include_markdown_description | boolean To return task descriptions in Markdown format, use |
page | integer <int32> Page to fetch (starts at 0). |
order_by | string Order by a particular field. By default, tasks are ordered by |
reverse | boolean Tasks are displayed in reverse order. |
subtasks | boolean Include or exclude subtasks. By default, subtasks are excluded. |
statuses | Array of strings Filter by statuses. To include closed tasks, use the |
include_closed | boolean Include or excluse closed tasks. By default, they are excluded. |
assignees | Array of strings Filter by Assignees. For example: |
watchers | Array of strings Filter by watchers. |
tags | Array of strings Filter by tags. For example: |
due_date_gt | integer <int32> Filter by due date greater than Unix time in milliseconds. |
due_date_lt | integer <int32> Filter by due date less than Unix time in milliseconds. |
date_created_gt | integer <int32> Filter by date created greater than Unix time in milliseconds. |
date_created_lt | integer <int32> Filter by date created less than Unix time in milliseconds. |
date_updated_gt | integer <int32> Filter by date updated greater than Unix time in milliseconds. |
date_updated_lt | integer <int32> Filter by date updated less than Unix time in milliseconds. |
date_done_gt | integer <int32> Filter by date done greater than Unix time in milliseconds. |
date_done_lt | integer <int32> Filter by date done less than Unix time in milliseconds. |
custom_fields | Array of strings Include tasks with specific values in one or more Custom Fields. Custom Relationships are included. |
custom_field | Array of strings Include tasks with specific values in only one Custom Field. This Custom Field can be a Custom Relationship. |
custom_items | Array of numbers Filter by custom task types. For example: |
{- "tasks": [
- {
- "id": "9hx",
- "custom_item_id": null,
- "name": "New Task Name",
- "status": {
- "status": "Open",
- "color": "#d3d3d3",
- "orderindex": 0,
- "type": "open"
}, - "markdown_description": "Task description",
- "orderindex": "1.00000000000000000000000000000000",
- "date_created": "1567780450202",
- "date_updated": "1567780450202",
- "date_closed": null,
- "date_done": null,
- "creator": {
- "id": 183,
- "username": "John Doe",
- "color": "#827718",
}, - "assignees": [ ],
- "watchers": [ ],
- "checklists": {
- "id": "595495f8-4557-41b7-a527-f808664816a0",
- "task_id": "86cv5pkvr",
- "name": "Checklist on a task",
- "date_created": "1714661812846",
- "orderindex": "1",
- "creator": 2770032,
- "resolved": 0,
- "unresolved": 2,
- "items": [ ]
}, - "tags": [ ],
- "parent": null,
- "priority": null,
- "due_date": null,
- "start_date": null,
- "points": 3,
- "time_estimate": null,
- "time_spent": null,
- "custom_fields": {
- "id": "0a52c486-5f05-403b-b4fd-c512ff05131c",
- "name": "My Text Custom field",
- "type": "text",
- "type_config": { },
- "date_created": "1622176979540",
- "hide_from_guests": false,
- "value": {
- "value": "This is a string of text added to a Custom Field."
}, - "required": true
}, - "list": {
- "id": "123"
}, - "folder": {
- "id": "456"
}, - "space": {
- "id": "789"
},
}, - {
- "id": "9hz",
- "custom_item_id": null,
- "name": "Second task",
- "status": {
- "status": "Open",
- "color": "#d3d3d3",
- "orderindex": 0,
- "type": "open"
}, - "orderindex": "2.00000000000000000000000000000000",
- "date_created": "1567780450202",
- "date_updated": "1567780450202",
- "date_closed": null,
- "date_done": null,
- "creator": {
- "id": 183,
- "username": "John Doe",
- "color": "#827718",
}, - "assignees": [ ],
- "watchers": [ ],
- "checklists": {
- "id": "de159781-452c-4ef3-a3ac-0df4bf18aae2",
- "name": "Checklist item 1",
- "orderindex": 0,
- "assignee": null,
- "group_assignee": null,
- "resolved": false,
- "parent": null,
- "date_created": "1714661817234",
- "children": [ ]
}, - "tags": [ ],
- "parent": null,
- "priority": null,
- "due_date": null,
- "start_date": null,
- "points": 3,
- "time_estimate": null,
- "time_spent": null,
- "custom_fields": {
- "id": "0a52c486-5f05-403b-b4fd-c512ff05131c",
- "name": "My Text Custom field",
- "type": "text",
- "type_config": { },
- "date_created": "1622176979540",
- "hide_from_guests": false,
- "value": {
- "value": "This is a string of text added to a Custom Field."
}, - "required": true
}, - "list": {
- "id": "123"
}, - "folder": {
- "id": "456"
}, - "space": {
- "id": "789"
},
}
]
}