We are trying to get the tasks from Asana using the Asana API to create a customized dashboard. But we couldn't get archived tasks using the API. Is there anyway to get all tasks including the archived tasks using the API? If this feature doesn't exist will it be added in the upcoming releases?
Thanks in advance
There's actually a flag,
include_archived
that you can set totrue
, which will cause a query for tasks to (you guessed it!) include the archived tasks as well. See https://asana.com/developers/api-reference/tasks for more details (esp. the "Querying for Tasks" section).Hope that helps!