The following API call will work up to pr-21. From Apri-22 to 23, no records are shown though we do have orders placed after that.
GET
https://@apiverson.ordoro.com/order?limit=20&supplier=37309&status=dropshipment_requested&created_after=2018-04-21T10:07:32-04:00
works
https://@apiverson.ordoro.com/order?limit=20&supplier=37309&status=dropshipment_requested&created_after=2018-04-22T10:07:32-04:00
does not work.
{
“limit”: 100,
“offset”: 0,
“count”: 0,
“order”: []
}
It used to work all the time. We tried changing the limit, supplier, added.remove printed=true/false and nothing worked.
While there are orders in your account after April 21st, I do not see any with dropshipments requested after April 21. The API is returning those results.
I had just figured it out by myself.
What we need is to know all the orders shows status = dropshipment_requested but filtering it by dropshipment_requested date. How can we accomplish it?