1
votes

how I can get all special_prices for a specific product id?

using this call: http://prestashop.test.com/api/specific_prices/?display=full it return me ALL SPECIAL PRICES of all products. How I can filter it by specific product_id?

1

1 Answers

3
votes

From Prestashop 1.6 API Documentation:

http://prestashop.test.com/api/specific_prices/?display=full&filter[id_product]=[5]

With this request we will retrieve all specific_prices for the product with id_product=5.


For more informations see my other post listing all API filters