Upload to Google Drive with Advance Setting

ichilddev

Member
Consent to Access & Modify
I authorize Pabbly Support to log in to my account and make changes to the specified workflow for troubleshooting.
Dear Support,

How do i upload a file to a shared folder without allowing download. See attached advance setting: disabled download print and copy for commentors and viewers
 

Attachments

  • disabled download print and copy for comment.png
    disabled download print and copy for comment.png
    131.4 KB · Views: 5

Preeti Paryani

Well-known member
Staff member
Hello @ichilddev,

Could you please confirm whether the folder has been shared with you individually, or if it is part of a shared drive? This will help us better understand the setup and guide you accordingly.
 

ichilddev

Member
We are the owner of the folder drive.

I have checked with Grok:
The recommended and current way to restrict downloads (along with print and copy) for viewers and commenters via the Google Drive API v3 is to use the downloadRestrictions field in the File resource.API endpointPATCH https://www.googleapis.com/drive/v3/files/{FILE_ID}Request body (JSON) to restrict download
json

{
"downloadRestrictions": {
"itemDownloadRestriction": "restrictedForReaders"
}
}
  • This disables download, print, and copy options for readers (viewers) and commenters.
  • Buttons are typically hidden or non-functional in the viewer.
Alternative (legacy field, still supported but not recommended for new implementations)
json

{
"copyRequiresWriterPermission": true
}
  • This achieves a similar effect (disables copy/print/download for non-writers).
  • Official docs recommend migrating to downloadRestrictions for better granularity and future compatibility.
Key notes (as of 2026)
The downloadRestrictions approach is the modern, preferred method for precisely this purpose. If you need code samples in a specific language, let me know!
Kindly advise can i use the PAbbly API or pabbly drive to achieve the above?
 

Preeti Paryani

Well-known member
Staff member
Hello @ichilddev,

Thanks for sharing the details.

At the moment, this use case is achievable only via a PATCH request to the Google Drive API. Since we currently do not have a dedicated Update File action in the Google Drive integration, this functionality is not available natively.

We have escalated your request to our product team to introduce an Update File action with an option to configure download restrictions (disable download, print, and copy) for uploaded files.

We’ll keep you posted on any updates regarding this enhancement.
 
Top