clickup_get_view_tasks
Retrieve tasks exactly as displayed in a ClickUp view, honoring its filters, sorting, and grouping. Reproduce saved Board, Table, or Calendar views.
Instructions
List the tasks currently visible in a view, honoring its filters and sorting.
Unlike clickup_get_tasks (which lists all tasks in a List) or
clickup_get_filtered_team_tasks (workspace-wide filters), this returns
exactly what the view itself shows — respecting the view's own grouping,
sorting, and filter configuration.
When to Use:
Reproducing exactly what a saved Board/Table/Calendar view displays.
When NOT to Use:
Filtering tasks with ad-hoc criteria not tied to a saved view — use
clickup_get_filtered_team_tasksinstead.
Returns: Markdown (default) or JSON with the page's tasks (id, name, status) and whether more pages remain.
Pagination:
ClickUp pages page, 0-indexed, up to 100 tasks per page. Check
last_page (JSON) or the "More available" note (markdown) and call again
with page + 1 until it is true.
Examples: params = {"view_id": "abc123", "page": 0}
Error Handling: 404 means the view id is wrong.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |