Your workflow is unique 👨💻 - tell us how you use Dropbox here.
Forum Discussion
23W
6 years agoHelpful | Level 5
How can I list content of sharded folder that has not mounted yet?
How can I list content of sharded folder that has not been mounted yet?
- 6 years ago
The Dropbox API functionality for listing folders is generally only meant for mounted content, but you can technically list the contents of an unmounted folder by calling /2/files/list_folder with the 'preview_url' (e.g., from the shared folder metadata) as the 'shared_link.url' parameter, like:
curl -X POST https://api.dropboxapi.com/2/files/list_folder \ --header "Authorization: Bearer <ACCESS_TOKEN>" \ --header "Content-Type: application/json" \ --data "{\"path\": \"\", \"shared_link\": {\"url\": \"<PREVIEW_URL>\"}}"
Greg-DB
Dropbox Community Moderator
6 years agoAttempting to upload to an unmounted shared folder will fail. The shared folder needs to be mounted for an app to make changes in it.
We should return a better error message in this case though. I'll ask the team to update the API to return a useful error when this is attempted. Thanks!
23W
6 years agoHelpful | Level 5
Greg-DB
Thanks, it's a bit disappointing but expected. Can you say, only upload operation is forbidden for such type of shared folder or I should avoid other modification operation like renaming, creating\deleting sub-folders? Currently they work fine, can I use them in production?
- Greg-DB6 years ago
Dropbox Community Moderator
Some other kinds of changes may work, but I can't guarantee if that's officially supported. I'll ask the team to confirm this and document it explicitly.
- 23W6 years agoHelpful | Level 5
Great thank you. I'll wait confirmation and documentation of this feature.
About Dropbox API Support and Feedback
Get help with the Dropbox API from fellow developers and experts.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If 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, Facebook or Instagram.
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!