Best way to query tracking numbers

If I want to get a JSON response using GET+URL of all tracking numbers added in the last X days, what would the URL structure look like?

Hi there, if you’re on v3 you would use the endpoint below replacing your_start_date and your_end_date with the timeframes you would like to search within.

GET https://apiverson.ordoro.com/order?status=shipped&shipped_before=your_start_date&shipped_after=your_end_date

You can find more info on this endpoint at https://devapiverson.docs.apiary.io/#reference/order/order/get.

2 Likes

Thank you for a timely feedback!