Read access Google Drive: how to uncheck the download/print option

With make:

  • I’ve been able to create a google drive folder with read access only.
  • The individual files are copied and have read access only.

Issue on the next step

  • But there is a check box on each google drive file to allow the user to download/print the document.
  • I want to uncheck this box using make.
    google_drive_nodownload
    I couldn’t figure out how to do it.

I believe this is something you need to do via Make an API call not sure if this settings exist, so once you have created a document/file in Google Drive, what you want to do is Setup a New Module, Make an API call and then set the value of,

copyRequiresWriterPermission:true

So, Something like this should work,

1 Like

Thanks for the tip. However it was not sufficient for me to get it work.
Right now I have no clue on how to get the URL in the first field.

Hi @xxformat,

For the URL,

/v2/files/{{fileID}}

the fileID is the mapping that you can do from the previous Google Drive Module by which you are sharing/uploading the documents.

1 Like

Thank you so much. I’ve been able to remove the print/download options to all my files.
I would never have been able to do it without you.