Hello all, looking through the current Core API docs, I find no way to batch-delete a set of files, other than to delete a whole folder.
This is causing performance issues with the application I'm working on. I started with Google Drive support, and they have a generic mechanism for batching API requests (putting requests themselves as multipart mime sections of a single request to a batch request endpoint)... I was wondering if Dropbox has an undocumented or v2 REST API endpoint for specifying a set of paths to delete...
Right now I have to walk through each file to delete, and make an HTTP request in-turn. This gets painfully expensive when there are 1000 or more files to remove.
I cannot just remove the whole folder, as some of the files in the folder may need to remain.