-
list_folder / get_file_metadata not returning path_lower
Hi, I am trying the list_folder & get_file_metadata APIs, but both of them doesn't seem to be returning path_lower/path information in FileMetadata. The value is null. I tried from my java code and from the API explorer. Response from API explorer is below.…
-
API - Getting owner information of a file that is not shared
Hi - I am trying to get owner information of a file that is not shared. I tried the below - FileMetadata fileMetadata = (FileMetadata) dbxTeamClient.asAdmin(adminId).files().getMetadata(fileId); But FileMetadata doesn't seem to have this information. For shared files/folders, I am able to get same using…
-
Getting team folders (not ones shared by Users)
What's the best/optimal way of fetching team folders without including the folders shared by individual users? I have tried the below option, but it fetches all shared folders (folders inside team folder and the ones shared by individual users) - Call dbxTeamClient.team().namespacesList() - Use namespace type to filter…
-
Cursor at team root level
I am trying to fetch changes from multiple shared folders and user's folders from a business account. Its initially fetched by iteratively calling list_folder and list_folder_continue for each folder I am interested in. My question is, to fetch changes later on, do I need to store the cursor for each folder or is there a…