list_tasks
Retrieve tasks in ClickUp by list, folder, or space, with options to filter by status, assignee, and include closed tasks for efficient project management.
Instructions
List tasks in a list, folder, or space
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | Filter by assignee IDs | |
folder_id | No | Folder ID | |
include_closed | No | Include closed tasks | |
list_id | No | List ID | |
space_id | No | Space ID | |
statuses | No | Filter by statuses |
Input Schema (JSON Schema)
{
"properties": {
"assignees": {
"description": "Filter by assignee IDs",
"items": {
"type": "integer"
},
"type": "array"
},
"folder_id": {
"description": "Folder ID",
"type": "string"
},
"include_closed": {
"description": "Include closed tasks",
"type": "boolean"
},
"list_id": {
"description": "List ID",
"type": "string"
},
"space_id": {
"description": "Space ID",
"type": "string"
},
"statuses": {
"description": "Filter by statuses",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}