Reputation: 105
Is there a way using the Asana api to retrieve the project owner, project status, project description and project deadline?
I checked the API docs and could not find anything, so I am assuming the answer is no (but confirmation is much appreciated).
https://asana.com/developers/api-reference/projects#sections
If there is not a way of doing this via the API, does anyone have any hacks on how to do this using something like Selenium or another tool?
Much appreciated.
Upvotes: 0
Views: 163
Reputation: 848
Project overview attributes are accessible attributes on project objects in the API.
current_status
is the latest status update for the project including the color and text associated.owner
the current project owner.due_date
the current project due date.Upvotes: 1