POST api/products/userprices?email={email}&sku={sku}&isDebug={isDebug}
Get the price of a product for a given user
Request Information
URI Parameters
| Name | Description | Type | 
|---|---|---|
| The email address must be in use in Navision [required] | string | |
| sku | Product sku [required] | string | 
Body Parameters
None.
Response Information
Resource Description
Product price for the given user if successful. Exception (Status 500) Otherwise
PriceInfo| Name | Description | Type | 
|---|---|---|
| Price | Price | decimal number | 
| FullPrice | Full Price | decimal number | 
| MemberPrice | Member Price | decimal number | 
| PriceExMva | Price ex mva | decimal number | 
            Sample:
{
  "Price": 0.0,
  "FullPrice": 0.0,
  "MemberPrice": 0.0,
  "PriceExMva": 0.0
}