My application makes a series of requests to modify threads. Right now, it's doing it thread by thread, but ideally it would batch the thread ids and make one request. Is it possible to do this?
EDIT:
I found this guide for the gmail api https://developers.google.com/gmail/api/guides/batch. It allows request batching but not doing something like batching atomic units, e.g. if I want to modify a group of threads at once, it seems that I still have to make an individual request for each thread (and then batch them into one multi-part request).