Getting the general prices for articles. Prices can differ for user, order/delivery date, amount,order unit, ... But this call returns the starting point for each price code. Which customer uses which Price code is defined on the customers endpoint.
The pagination and count is based on the articles. So to count the possible returns, use the count endpoint of the articles.
See also Articles and Price codes endpoints.
GET /generalPrices
GET /generalPrices/incremental
dossiernr = company within FoodMaster
pag = page number
lim = page size
dossiernr = company within FoodMaster
since = changes since 1900-01-01T00:00:00 for ‘since last call’
Return all available price codes and their value for articles.
See following example:
xxxxxxxxxx{ "dsGeneralPrices": { "ttArtikels": [ { "artikelnr": "AZ564", // aarticle id "artikelsrt": 0, // article kind "ttPrijzen": [ { "prijscode": 1, // price code "vkp_excl": 0.1239, // price excluding VAT "vkp_incl": 0.1499, // price including VAT "rec-id": 852481 // record id }, ] } ] }}