bauerpl
bauerpl

Reputation: 86

Asana API roadmap - getting completed tasks (including archived)

Do you plan to add possibility to retrieve (via API) all tasks from project including those which are archived?

Upvotes: 3

Views: 1044

Answers (4)

cabe56
cabe56

Reputation: 404

Archived tasks can be accessed by including the parameter ?include_archived=true in your request for querying tasks by project.

Task section in Asana documentation

Upvotes: 1

jessepinho
jessepinho

Reputation: 5782

Until the API officially supports this, you can always query /tasks?completed_since=now to get only incomplete tasks, then query /tasks, and filter for tasks that only appear in the second list.

Upvotes: 1

Chad
Chad

Reputation: 273

I am trying to do this exact same thing as well. We are using a project to track line down events on our manufacturing floor. I found this post helpful and you can append “?include_archived=true” to your query but I found out that you can also do a reverse lookup on tasks by their tag. This will also show achieved tasks as well.

Upvotes: 0

Greg S
Greg S

Reputation: 2079

(I work at Asana)

That would be a useful feature and we are already planning on adding it. However, I can't comment as to when it will be possible.

Upvotes: 1

Related Questions