Looks like you are trying to get shipments from the api, not orders. Let me know what you are trying to do, so I can better understand the endpoints you are using.
Yes I am trying to get shipments (or Orders with status = “Shipped” ) from the API. My objective is to retrieve all the shipped orders from Ordoro only. With the shipment API endpoint, I am using the start date as the order create date to query Ordoro and do further data massaging as I learned that the “Ship date” is not opened as a query parameter in the API.
The API endpoint that I have been using has been working so far except the 3 orders I mentioned above which are exceptional. Could you please check what has gone wrong. Thanks.
I see. The thing is, the endpoint you are using is actually to retrieve shipments. If you are trying to get an order, you’ll want to use an order endpoint.
You are using Ordoro 3 in the app, this url should give you the desired orders. Let me know if this helps. One thing to note, you are looking for orders with a start date of 2018-04-24, and the orders mentioned are from 2018-04-23 UTC. It’s possibly you need a different offset if you want to continue to use the shipment api. order_placed_date": "2018-04-23T22:22:43+00:00"
On the UI it shows that order M-3396-T1-3 was created at Apr 24, 2018 at 6:22am but the created returned by API is showing “2018-04-23T22:30:53.912765+00:00”. What have caused the difference here?