Vladimir
Vladimir

Reputation: 21

Quota for UrlFetchApp fetchAll

I use AppScript for Google Sheets. And want use fetch. Question:

This one command:

UrlFetchApp.fetchAll([req1, req2, req3])

It is one call or three calls for Quota Google Services?

Upvotes: 1

Views: 425

Answers (1)

Raserhin
Raserhin

Reputation: 2696

As @Tanaike has stated every request inside fetchAll() counts for the quota.

Meaning that if you have 3 request inside fetch it would could as having made 3 different fetch.

Upvotes: 1

Related Questions