Key |
Purpose |
Sample |
Description |
customer |
Customer account code (required) |
http://localhost:1029/CustomerPricing?customer=AC001&products=BUCKET001 |
Gets the price for a product with code BUCKET001 for customer with acount AC001 |
products |
Product code (required) |
http://localhost:1029/CustomerPricing?customer=AC001&products=BUCKET001,CEMENT02,CHISEL01 |
Products can be seperated by commas and you can specify either Ids or Codes |
quantity |
The number of items being bought. Useful when quantity breaks are in effect (optional) |
http://localhost:1029/CustomerPricing?customer=BBC001&products=BUCKET001&quantity=10 |
Get a price for BUCKET001 when customer BBC001 buys 10 |
productproperties |
A list of comma-seperated product properties to include in the result (optional) |
http://localhost:1029/CustomerPricing?customer=BBC001&products=BUCKET001&quantity=10&productproperties=description,selling.sellingunits |
Get a price for BUCKET001 when customer BBC001 buys 10 and includes the description and selling units |
currency |
The currency code to recall the prices in (optional) |
http://localhost:1029/CustomerPricing?customer=BBC001&products=BUCKET001&quantity=10¤cy=EUR |
Get a price for BUCKET001 when customer BBC001 buys 10 in Euro |