Hello,
We are trying to pull out data from Ordoro for “new” shipments. We have an application that polls Ordoro on a schedule and requests orders that have shipped since our last run. We save the last run date/time on each loop so we can subsequently request shipments since that time.
Our request looks like this:
https://api.ordoro.com/v3/order?sales_channel=105511&shipped_after=+lastRun
“lastRun” is just our variable that holds the date/time stamp of the last time we polled for shipments
We recently hit an issue where some orders were tagged with a future date of shipment. That caused our application to keep picking up the same few orders over and over.
Is there some other different/better way that we can request new orders or prevent future orders from being picked up in our polling?
Thank you.