jerry14 Helpful | Level 6

Comments

  • @"Greg-DB" Thanks. Setting withPathRoot resolved the issue. 
  • Thanks. I went through the documentation, still unable to pinpoint the issue. I am calling list folder API using folder id, is that the reason? ListFolderResult listFolderResult = dbxTeamClient.asAdmin(<ADMINID>) .files() .listFolderBuilder(<FOLDER_ID>) .withRecursive(true) .start();
  • Its not an issue, but I was looking for the right/best way to find users/groups that has access to a list of files. Below are the steps: a. The list of files (fileIds) in a Business Account (with Teamspace config) is fetched first using list_folder/list_folder_continue APIs. The authenticating user is Admin for the…
  • Thanks for the response. In that case, whats the best way to find the owner information using the APIs? I checked the metadata and other file related APIs to see if I can get the information. I couldn't find any or I must have missed something. I need this because I am accessing files that belongs to different members…
  • Thanks for the response. I tried the option - "setting withPathRoot and using listFolder and listFolderContinue." However that fetches user's root folders as well - is there a way to filter those out in the API itself? Couldn't find any pointers in the documentation/APIs. (I am working with Team Space configuration)
  • Thanks for the response. In that case, would it work for teams following the "Team Folder" structure (as in Team Space vs Team Folder) . Team Folder structure, as I understood, will have the user's home folder as the root ("") which will not cover other users. We are using team admin access token to fetch details for all…