Hello everyone.
I find it difficult to see the whole list of methods from the Python client library.
For instance, the API has an endpoint for getting the list of projects which can be accesed via https://app.asana.com/api/1.0/projects
.
I can’t find specific documentation for the Python client. Where can I see the full list of methods? I am just trying to achieve the same purpose as with the plan endpoint, but I don’t know what method I should use or how.
None of these work as expected:
client.projects.get_projects()
client.projects.find_all()
The endpoint does not require to pass any workspace. Why does the Python wrapper force it?