When I list the namespaces using "namespaces/list" and iterating through the namespaces using "files/list_folder[/continue]" I found that there are a few namespaces which I thought wouldn't be there, but they are shown. i.e. Deleted team member's folder When a team member created a shared folder in his/her own Personal root folder, it is shown in the namespace. However, if we delete the member, I found that the folder's namespace still exist and I can still download the file via API calls but there is no way that we can access it via the main files UI nor viewable/searchable in the admin panel. I have found that only by calling "files/list_folder" in that namespace will I be able to know that the file still exists. Is there any way to permanently delete the file? Are we able to get metadata of who was the one who added the file/folder in the first place? I had to dig in the Activity page to see that there is a record of "Non member" with "Unspecified email" who added the file. I understand that I can call "sharing/get_folder_metadata" and look for "is_inside_team_folder" but since it can still be downloaded, how would the administrator get access to review this folder and delete it without resorting to any API calls? (Is there any difference in API calls between the new "team spaces" config and the old one?) A namespace called "new folder" I'm not sure if this is created by a previous user and left alone similarly to the case above or just a placeholder for new folders to have a temporary namespace. But since there's nothing inside and I cant get any data of when it's created, it looks like a random stub to me. What I am trying to achieve in my code is this: List all the namespaces Traverse the namespaces and calling "files/list_folder" to list all the files in the Dropbox Business account. Merge the results. Display the files and folders of the dropbox as if they are on the web/desktop client itself. The files and folders from deleted team members pop up on my application, but when they visit the main web/desktop client, the users can't see the files and folders. Is there a better way to do what I want to achieve? Or at least be able to show on my UI that the file belongs to a deleted user/other reasons, and provide ways to delete it from the Dropbox account permanently? Thanks!
... View more