-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Summary: Please add include_timl (Tasks In Multiple Lists) parameter support.
The Issue: When querying by list_id, only tasks where that list is the home list are returned. Tasks added to the list via ClickUp's "multiple lists" feature (common for Sprint planning) are excluded.
Use Case: We use Sprint lists that aggregate tasks from multiple project lists. A task lives in "list 1" but is also assigned to "list 12". When querying Sprint 12, we need ALL assigned tasks, not just home-list tasks.
ClickUp API Reference:
By default, the endpoint only returns tasks where the queried list_id is the home List. To include tasks added via multiple lists (e.g., from other sprints), set the query parameter include_timl=true.
Requested Change:
function get_workspace_tasks(
// ... existing params
include_timl?: boolean // Include tasks added via multiple lists
)