You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
searchx
7 years agoExplorer | Level 4
How to get all the files and folders of a business account ?
I am trying to find the possible ways to get all the 1) Personal files and folder 2) team folder and files 3) Anything shared with the user. Basically a complete snapshot of what the particular user ...
- 7 years ago
It sounds like for what you're trying to do, the basic outline would look like this:
- Call /2/team/members/list[/continue] or /2/team/members/get_info to get the team member's information, such as their member ID, if you don't already have it.
- Call /2/users/get_current_account with Dropbox-API-Select-User containing the member ID to get the member's root info, i.e., both their root namespace ID and their home namespace ID. (This will be a "TeamRootInfo" type if the user is part of a team using the team space configuration.)
- Call /2/files/list_folder[/continue] with path="" and recursive=true to get the full file/folder listing for the member using both Dropbox-API-Select-User containing the member ID and Dropbox-API-Path-Root containing the "home" mode as documented in the Namespace Guide (or just omit it, since this is the default). Note that this will include anything mounted inside the member's Dropbox, e.g., shared folders. Be sure to continue paging through using /2/files/list_folder/continue when has_more=true as documented for /2/files/list_folder.
- Repeat the above, but using Dropbox-API-Path-Root with the "root" mode and supply the "root_namespace_id". This will give the contents of the team space.
Lusil
Dropbox Staff
Hi searchx!
Initially, I wanted to suggest that, if you’re a team admin, you could create an activity report or export a member data report. You might also find this thread to be helpful as well.
Finally, you’ll notice that I’ve moved your post here since you may find more relevant info/suggestions to your query. :grinning:
In the mean time, I hope you have wonderful day ahead!
searchx
7 years agoExplorer | Level 4
Thanks for reply.
Looks like that doesn't work for me. My app has 'Team member file access'. When I try the below,
POST /2/files/list_folder
Host: https://api.dropboxapi.com
Authorization: Bearer <token>
Content-Type: application/json
Dropbox-Api-Select-User: dbmid:
{
"path": "",
"recursive": true
}
I get only the list of files from the user and nothing from team folders.
- Greg-DB7 years agoDropbox Staff
searchx It sounds like the team probably uses the "team space" configuration, so the team folders aren't mounted inside the member's own folder. You'll need to use the "Dropbox-API-Path-Root" header to identify the team space in that case. The Namespace Guide goes over this in detail:
https://www.dropbox.com/developers/reference/namespace-guide
- searchx7 years agoExplorer | Level 4
Thanks Greg.
It is still confusing. Let me re-iterate my problem.
I have an Admin token and I would like to see all the files that user has access to ( Private, team and shared). Accoding to the team space concept, in order to do that, I need to first find out all the name space ids and make calls (list/list_folder) for each?
Or is there a way, that I can make single (list_folder/continue) call as described in the documentation 'Dropbox-API-Select-User' ?
If there is a way, what combination of headers( Dropbox-API-Select-User andDropbox-API-Path-Root) I should use?
- Greg-DB7 years agoDropbox Staff
It sounds like for what you're trying to do, the basic outline would look like this:
- Call /2/team/members/list[/continue] or /2/team/members/get_info to get the team member's information, such as their member ID, if you don't already have it.
- Call /2/users/get_current_account with Dropbox-API-Select-User containing the member ID to get the member's root info, i.e., both their root namespace ID and their home namespace ID. (This will be a "TeamRootInfo" type if the user is part of a team using the team space configuration.)
- Call /2/files/list_folder[/continue] with path="" and recursive=true to get the full file/folder listing for the member using both Dropbox-API-Select-User containing the member ID and Dropbox-API-Path-Root containing the "home" mode as documented in the Namespace Guide (or just omit it, since this is the default). Note that this will include anything mounted inside the member's Dropbox, e.g., shared folders. Be sure to continue paging through using /2/files/list_folder/continue when has_more=true as documented for /2/files/list_folder.
- Repeat the above, but using Dropbox-API-Path-Root with the "root" mode and supply the "root_namespace_id". This will give the contents of the team space.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,910 PostsLatest Activity: 3 days agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!