How do I get a list of tasks from a project that are incomplete? I tried to add ?completed=false
and ?completed=0
at the end of the tasks URL:
https://app.asana.com/api/1.0/projects/[project id]/tasks?completed=false
... doesn't seem to work. Whether its set to true or false, it is always returning the same tasks. I've spot checked to make sure there are completed tasks in there.
background info: I'm only trying to do this so that I don't get the entire list of tasks all the time. I need the entire list of tasks because right now as I understand it there is no way to get the section a task is in.
Hiding a section is not an option in Asana. What I would suggest you to do instead is to create a separate project which is private to you and have those tasks there. Through the usage of multi-homing you can also host in your private project the tasks from the public project.
Unfortunately, it is not possible to archive multiple projects at once, you'll need to archive them one per one. Tasks can't be archived, but they can be marked completed; if you need to mark multiple ones completed at once, simply use the multiselect function and mark all your tasks completed in one click!
Asana actually stores your tasks and projects, whether completed or archived (or not!), forever!
Under "Querying for Tasks" in the Developer Documentation you'll find the parameters you can pass to select different tasks. We don't support generalized queries (like completed=false
) but we do have e.g. completed_since
, which returns all "incomplete or completed since X" tasks. So, if you only want incomplete tasks, you can pass completed_since=now
(since no completed tasks have been completed since the current time, it will only return incomplete tasks). It's not exactly intuitive, but it works :-)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With