0

I need to select a user and then list all the projects that the user is working on. Also how can this be done with a specific workspace of the user? What would the url look like?

Also how do we access the teams that are created in asana using the asana api?

Gopal Samant
  • 21
  • 1
  • 4

1 Answers1

1

The documentation is decent.

Most notably, you're probably looking for endpoints /users, /projects, and /projects/[project-id]/tasks. To the best of my knowledge the API provides no way list all the projects a user is working on. You have to create that list yourself by iterating through all the tasks on a project.

Andy Jones
  • 6,205
  • 4
  • 31
  • 47