get_tasks
Fetch all tasks from a ClickUp list, using optional filters for status, assignee, tags, due dates, and more. Includes options for subtasks and archived tasks.
Instructions
Get all tasks from a ClickUp list with optional filtering by status, assignee, tags, dates, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Pagination page number (0-indexed) | |
| tags | No | Filter by tag names | |
| list_id | Yes | The ID of the list | |
| reverse | No | Reverse the order | |
| archived | No | Include archived tasks | |
| order_by | No | Order tasks by: created, updated, id, custom_id, due_date | |
| statuses | No | Filter by status names | |
| subtasks | No | Include subtasks | |
| assignees | No | Filter by assignee user IDs | |
| due_date_gt | No | Due date greater than (ms timestamp) | |
| due_date_lt | No | Due date less than (ms timestamp) | |
| custom_fields | No | Filter by custom field IDs | |
| date_created_gt | No | Created after (ms timestamp) | |
| date_created_lt | No | Created before (ms timestamp) | |
| date_updated_gt | No | Updated after (ms timestamp) | |
| date_updated_lt | No | Updated before (ms timestamp) | |
| include_subtasks | No | Include subtasks in response | |
| include_markdown_description | No | Include markdown description in response |