This endpoint returns the articles that are in promotion (code 50 of special prices endpoint) for a given customer on a given date. Mainly used to create a 'promotions' page on a web shop.
Best used in combination with the supplier promo endpoint.
GET /PromoArticles
dossiernr = company within FoodMaster
klant-nr = customer id
datum_lev = delivery date
The call simply returns the articles that are in promotion, not the price or promotion. Price and promotion values can be found in the prices call.
See following example:
xxxxxxxxxx{ "dsPromoArticles": { "ttPROMO_HFD": [ { "dossiernr": 1, // company within FoodMaster "klant-nr": 10047, // customer id "datum_lev": "2050-10-25", // delivery date "ttPROMO_ART": [ { "artikelsrt": 0, // article kind "artikelnr": "ADF4165541", // aarticle id "rec-id": 2278 // record id }, ] } ] }}