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

Forum Discussion

rk90's avatar
rk90
Helpful | Level 5
6 years ago

Getting 409 error when calling list_folder on empty folder

I have been consistently getting 409 errors on some empty team folders. I am using Dropbox-Select-API-Admin header and listing team folders recursively. I am using the path to list those folders, tha...
  • Greg-DB's avatar
    Greg-DB
    6 years ago

    If you're signed in to the Dropbox web site as that user, for instance, you wouldn't see the "Product Management" team folder listed in the user's file listing on https://www.dropbox.com/home . You would see it listed on the team's admin console on https://www.dropbox.com/team/admin/team_folders/home though. You could then use the "Manage" button to add a group to it. Once a group is added, if the user is a member of that group, it would be mounted for that user and so listed on https://www.dropbox.com/home .

    Likewise, via the API, you can add a group using the /2/sharing/add_folder_member endpoint, like this:

    curl -X POST https://api.dropboxapi.com/2/sharing/add_folder_member \
        --header "Authorization: Bearer <ACCESS TOKEN>" \
        --header "Dropbox-API-Select-Admin: <ADMIN TEAM MEMBER ID>" \
        --header "Content-Type: application/json" \
        --data "{\"shared_folder_id\": \"<TEAM FOLDER ID>\",\"members\": [{\"member\": {\".tag\": \"dropbox_id\",\"dropbox_id\": \"<GROUP ID>\"}}]}"
    

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,877 PostsLatest Activity: 2 hours ago
325 Following

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 or Facebook.

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!