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

Time:05-07

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?

CodePudding user response:

You can do it by composing the URL like that :

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