Get order list filtered by greater than by specific order id in Prestashop rest API

701 Views Asked by At

I am newer in Prestashop,

I need to get the order list in which orders should be greater than a specific order_id using Rest API. Let suppose there are 100 orders and I need to fetch all the orders greater than 45(order_id). How can I do that?

1

There are 1 best solutions below

0
On BEST ANSWER

You can do it by composing the URL like that :

http://localhost/api/orders?filter[id]=>[45]