Skip to main content
Question

"This file is too large to be exported" error on Zap when moving file from root of Google Drive to a folder

  • July 23, 2026
  • 6 replies
  • 39 views

Using a softwaere package that creates a Google Doc via Api from the system.

The Google Doc is created from a template which is copied from the root fo the Google Drive. The API “pushes” text and images into the Google Doc.

We have created a Zap that polls every 2 minutes to move any newly created Google Doc from the root of Google Drive into a folder.

This works for the bulk of Google Docs we create - but occassionally (and seemingly without cause) we get a Zap error as follows:

This Google Docs step hit an error

Error while hydrating data from Google Docs: The app returned "This file is too large to be exported.".

The files being generated range from 4MB to 15MB (at most). It is the larger files that seem to have more problems but they are not near the 1GB that has been suggested by the Troubleshooter.

Is the Google Doc being held open by the API and the Zap doesn’t like it?

Would love to hear from the community on any thoughts of where to look next as to the cause.

6 replies

Forum|alt.badge.img+4
  • Zapier Solution Partner
  • July 23, 2026

Hi ​@Sc40 

You can try this approach:

  • Add a "Delay by Zapier" Action: Place this step after your Google Drive trigger ("New File in Folder") and before the "Move File" action .

  • Set the Delay Duration: Set it for 1 to 2 minutes. This small pause gives the external API enough time to finish saving the file, ensuring it is fully ready for Zapier to move 

Documentation:

Hope this helps!


Troy Tessalone
Zapier Orchestrator & Solution Partner
Forum|alt.badge.img+14
  • Zapier Orchestrator & Solution Partner
  • July 23, 2026

Hi ​@Sc40 

Help links for using GDrive in Zaps: https://zapier.com/apps/google-drive/integrations#help

Help links for using files in Zaps: https://help.zapier.com/hc/en-us/articles/8496288813453-Send-files-in-Zap-workflows#h_01JK6FEBYY8ZZVZYS10BS5R936

  • Files larger than 100 MB may result in a timeout error.
  • Zapier also has a 150 MB limit for downloading (hydrating) files from connected apps.

 


SamB
Community Manager
Forum|alt.badge.img+11
  • Community Manager
  • July 27, 2026

Hi ​@Sc40 👋

You’re right, even at 15MB the files shouldn't be giving you that “This file is too large to be exported” error. If you replay the errored Zap runs are they successful, or do they still error?

Also, did you have any luck with the Delay action Fahad suggested?


Forum|alt.badge.img+1
  • New
  • July 29, 2026

One thing worth separating out: the 100 and 150 MB figures are Zapier limits for hydrating a binary file, but a native Google Doc has no bytes of its own, so Drive has to export it before anything can read it, and that export endpoint tops out around 10 MB. That matches the pattern you are seeing, where the 4 MB docs go through and the ones up near 15 MB do not, and it also explains why the delay did not change anything, since it is a size ceiling rather than a timing problem. A move in Drive is only a change of parent folder, so the way out is a step that never touches the content. A Webhooks by Zapier PATCH to the Drive files endpoint with addParents and removeParents performs the move without triggering an export. Better still, if the system generating the doc can be told which folder to create it in, the move step disappears entirely. Worth confirming first: the runs that fail should be the largest files every single time. If a 5 MB one ever fails, then it is something else and the export ceiling is a red herring.


  • Author
  • Beginner
  • July 30, 2026

Thanks all for your replies to this problem - and apologies for the delay in updating.

@Fahad S  - thank you for your suggestion of the delay. Still a noobie in many areas of Zapier and discovering the delay has opened my eyes to what is possible. Sadly we are stil getting the issue, so onto the next step.

@SamB - Thank you for your suggestion of replaying the Zap. Will test that on the next occurrence. Sadly no luck with Farhad’s suggestion.

@aiappsapi - Thanks for your suggestion - this sounds promising as a next step. If I’m understanding correctly - if we use the addParents and removeParents this performs the equivalent of a move in Google Drive without doing the export (and hitting file limits). If we did this as part of the API - we can eliminate the move in Zapier (and the problem) - this i will pass on to the developer.  In the mean time, i’ll start experimenting within Zapier to try out your suggestion.

More to come following the tests - thanks all!
 


SamB
Community Manager
Forum|alt.badge.img+11
  • Community Manager
  • July 30, 2026

Thanks for the update ​@Sc40! Look forward to hearing how the tests go. 🙂