Reputation: 1160
I've been looking at the Dropbox and Dropbox for Business API and I was trying to see if it would be possible to create a list of all the members and what shared folders they have access to.
I have found a project by Dropbox (Github Source) that lists all the shared folders and which people have access to them. I essentially want to do the opposite, list the users and what folders they have.
I have read through all the API (Core and Business) docs but can't seem to find a way to do it, unless I'm missing something. I also read about a preview of the new API, but again I don't think that is what I want.
Does anyone know if this can be done?
Upvotes: 1
Views: 2376
Reputation: 60143
If I understand correctly what you're trying to do, you just need to call /shared_folders
for each member of the team.
(You can list the members of the team via /team/members/list
.)
Upvotes: 1