Reputation: 21
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
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