Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
sophisty
8 years agoExplorer | Level 3
Problem with the list folder path to retrieve recursive folders
Im trying out the V2 ApI and I am having some issues to list all the folders and their content. So i managed to curl via terminal using this : curl -X POST https://api.dropboxapi.com/2/files/list_...
- 8 years ago
The "data" you pass up needs to be valid JSON, otherwise the API call will fail with the "could not decode input as JSON" error.
Some of your values are missing pieces such as the opening { or a ,. Also, make sure you use the standard " character, and escape it with a \.
So, here are some valid examples based on what you posted:
--data "{\"path\": \"/hotel_1\"}"
--data "{\"path\": \"/sop_nifi\"}"
--data "{\"path\": \"/sop_nifi\", \"recursive:true\"}"
The API Explorer can be helpful for constructing these curl commands: (click "Show Code")
https://dropbox.github.io/dropbox-api-v2-explorer/#files_list_folder
Greg-DB
Dropbox Community Moderator
8 years agoThe "data" you pass up needs to be valid JSON, otherwise the API call will fail with the "could not decode input as JSON" error.
Some of your values are missing pieces such as the opening { or a ,. Also, make sure you use the standard " character, and escape it with a \.
So, here are some valid examples based on what you posted:
--data "{\"path\": \"/hotel_1\"}"
--data "{\"path\": \"/sop_nifi\"}"
--data "{\"path\": \"/sop_nifi\", \"recursive:true\"}"
The API Explorer can be helpful for constructing these curl commands: (click "Show Code")
https://dropbox.github.io/dropbox-api-v2-explorer/#files_list_folder
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
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!