We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

HerikLima's avatar
HerikLima
New member | Level 2
6 years ago

list_folder {".tag": "not_found"}

Hello.

I'm following this example:

https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder

curl -X POST https://api.dropboxapi.com/2/files/list_folder \
--header "Authorization: Bearer " \
--header "Content-Type: application/json" \
--data "{\"path\": \"/Aplicativos/APEOESP\",\"recursive\": true,\"include_media_info\": false,\"include_deleted\": false,\"include_has_explicit_shared_members\": false,\"include_mounted_folders\": true,\"include_non_downloadable_files\": true}"

 

And I'm getting this error: {"error_summary": "path/not_found/.", "error": {".tag": "path", "path": {".tag": "not_found"}}}

 

Can somebody help me?

  • The error summary is telling you that it couldn't find the path that was passed in as a parameter.

    I recommend tinkering with the API Explorer tool on the the file/list_folder endpoint until you find the correct path to use in your code. Good luck!