Get list of tasks filtered by task_ids[]
not on the roadmap
Stefan Natter
## Feature Request
I was discussing with the ClickUp support how I can get a list of ClickUp tasks by a list of task ids I have available. Views were not helping, the current API seems not to support that, only custom_task_ids[].
## Why?
Imaging having a list of task_ids people tracked time onto (e.g. in Toggl), but you can't get additional data for internal time tracking reports because the API does not enable me to get a list of clickup tasks by id (not custom id).
Log In
Canny AI
Merged in a post:
API Parameter to get Multiple Tasks IDs
B
Brock Cataldi
API Parameter where you pass a string array of IDs and it returns that list of tasks.
Canny AI
Merged in a post:
Bulk task details endpoint request
David Fetter
I should see a new public API endpoint that allows fetching details for multiple tasks in a single request. The endpoint should accept an array of taskIds and return the corresponding task details in a structured response.
Joey
not on the roadmap
Hey there! Thanks for sharing your feature request with us. We truly appreciate your input!
As part of our efforts to improve our feedback boards, we're closing this older feature request.
Removing old and inactive posts will increase the communication between the ClickUp team and our users, allowing us to hear more of your great ideas!
If you feel this request is worth revisiting, feel free to create a new post!
Thanks for being a part of our community!
John
Hey David Fetter
This is possible using the Get Filtered Team Tasks endpoint (https://developer.clickup.com/reference/getfilteredteamtasks). You can filter for specific task IDs using the &task_ids[]= parameter.
Filtering for multiple would look like:
&task_ids[]=acb123&task_ids[]=xyz987
David Fetter
John Thank you so much! I didnt find in the docs or API reference! But works well!
Stepan Varseev
Send /api/v2/team/:team_id/task?task_ids[]=123&task_ids[]=345 to get two or more tasks
Aaron Tan
Stepan Varseev: Thanks for this, I'm looking for this as well to fetch details from a task relationship. Although if I need to fetch a bunch of task ids eg. 100's. What is the best way to handle this?
H
Hemantha Galapitage
Stepan Varseev: is there a way to use custom task ids for this? I've set
custom_task_ids
to true but it doesn't seem to be workingThanks for the post Brock Cataldi