See
Examples of situations when you might want to use batching:
…
- A user made changes to data while your application was offline (disconnected from the Internet), so your application needs to synchronize its local data with the server by sending a lot of updates and deletes.
… instead of sending each call separately, you can group them together into a single HTTP request. All the inner requests must go to the same Google API.
Note for GMail batch API:
You're limited to 100 calls in a single batch request. If you must make more calls than that, use multiple batch requests.
See
See bootstrap of Batch API bindings batch-kt-bindings branch.
See
"batchPath": "batch",Note for GMail batch API:
See
See bootstrap of Batch API bindings
batch-kt-bindingsbranch.