We have an app as a kitchen display screen where we will show all orders from clover. We set up a webhook(https://docs.clover.com/docs/webhooks) for showing orders on our tablet as the kitchen display screen.. Hook gives only a list of Order IDS that are created/updated, how can we get full order(all order details) based on these ids(because we want to show them on the kitchen screen as new orders). For example, it might happen that waiters created 10 orders at the same time, webhook will trigger our endpoint with a list of order ids but in order to show those orders(item name, price...) we need to fetch those orders from Clover, how can we do that without firing 10/100/1000 requests is that possible to be done in a single request?