How can I request archive tasks in Asana through their API

I am interested in exporting data from Asana so that we can run reports. For this, I will need to get a list of all tasks, including archive ones. My understanding of the API, which lists tasks, is that if a task is archived, it will not be retrieved when receiving tasks for the project. Is there a way to request all tasks, regardless of whether they are archived?

+6
source share
2 answers

There was already such a question. According to the Asana API, this is not possible. To ask why, you should contact Asana Support.

+1
source

Access to archived tasks can be obtained by including the request include_archived = true in the request request to perform tasks on the project.

Tasks section in Asana documentation

+1
source

Source: https://habr.com/ru/post/918609/


All Articles