GET api/product/{sku}/price

Get your discounted price for a product.

Request Information

Parameters

NameDescriptionAdditional information
sku
The sku/item number of the product

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "Sku": "sample string 1",
  "DiscountedPrice": 2.0
}

application/xml, text/xml

Sample:
<ProductPriceDTO xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Sku>sample string 1</Sku>
  <DiscountedPrice>2</DiscountedPrice>
</ProductPriceDTO>