This endpoint returns the possible delivery dates for a customer. This can be different for each customer. If someone places an order today, the delivery could be possible tomorrow, but it's also possible that a delivery is only possible in a few days. Or only on Thursdays for example.
GET /BestelData
dossiernr = company within FoodMaster
klant-nr = customer id
weken = amount of weeks to look forward
The only really important fields in the return are dag and datum depending on the way you want to use the data. Other fields concerning delivery rounds etc. are more internal info. Some of it can be used if needed. If more info is needed, contact We solve IT. via e-mail.
See following example:
xxxxxxxxxx{ "dsFKLANT_RND": { "ttFKLANT_RND": [ { "dossiernr": 1, // company within FoodMaster "soort": "", // kind of delivery round "cd_ronde": "", // code of delivery round "vlg_ronde": 0, // index number for delivery round "klant-nr": 55, // customer id "dag": 1, // day code -- 1 = Monday & 7 = Sunday "datum": "2020-10-26", // date "gezet": false // set (aalways false) }, ] }}