Project List Export

@savannahrucker
I would also like to have this functionality within Asana’s interface.

Although, actually, I do know a way to get the project list. You will have to use Asana’s API.

If I use this:
https://app.asana.com/api/1.0/workspaces/100208324844084/projects

I get a list of all projects in our organization which are visible to me.

{"data":[{"id":207820568746075,"name":"Test"}]}

You just need to replace 100208324844084 with your own workspace.

If you don’t know your workspace ID, you can get it using this:
https://app.asana.com/api/1.0/workspaces/
This will show you a list of all your workspaces.

I hope this helps. :smiley:

edit-
Oh and, the result is not that pretty since it’s in JSON format.
You can use this site (JSON to CSV Converter) to convert the result into CSV, which is a much readable format.



18 Likes