You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.

Forum Discussion

isaachadaac's avatar
isaachadaac
New member | Level 2
14 days ago

Sharing folders to users with viewer still permits downloads

I am working on an integration for our business that uses the API to shared a folder's content with an email attached to the order. Previously we used Google Drive to solve this but have experienced some issues and we would like to make Dropbox our new home. At the moment, I am granting the email addressed attached to the order viewer access like so:

const payload = {
   members: [
      {
         access_level: "viewer",
         member: {
            ".tag": "email",
            email: "email@addr.ess"
         }
      },
   ],
   quiet: true,
   shared_folder_id: "<folder_id>"
};

 

 

Essentially it does grant the user viewer access however they still have the option to download the folders content. Is there a way that we can restrict this? Essentially we are trying to prevent file sharing of our businesses documents.