# List product quantity break prices Gets a ProductPriceQtyBreakList. The list contains ProductPrices representing the price for each given minimum quantity bought. Endpoint: GET /ListProductPriceQtyBreak Version: 1.1 ## Query parameters: - `id` (integer, required) The internal id of the Product. - `storeSeed` (string) Accepts a comma separated string of store internal IDs. - `pricelistSeed` (string) A comma separated list of pricelist internal ids to use, if any. PriceLists supplied must be valid, either from the application's public priceList or any customer or company priceLists or any valid client priceLists. For clients configured to use priceListSeed exclusively in the API only the supplied priceLists will be used. If this is not configured, the supplied priceLists will be appended to the valid priceLists. If none is supplied, the default value for the application will be used in combination with any customer or company priceLists. This applies to both configurations. - `customerId` (string) Customer internal id. Checks for specific customer bound prices if provided. - `companyId` (string) Company internal id. Checks for specific company bound prices if provided. Note! customerId is mandatory in combination with companyId. - `cultureCode` (string) Specifies in which language to display culture specific information. If none is supplied, value is resolved from Application. - `currencyId` (string) Specifies in which currency to display prices. Uses Storm internal ids. If none is supplied, value is resolved from Application. - `salesAreaId` (string) Specifies the SalesArea to use. Uses Storm internal ids. If none is supplied, primary SalesArea on Application will be used. ## Response 200 fields (application/json): - `PartNo` (string) The part number for this product. - `QtyBreak` (number) The minimum quantity needed to purchase to receive the ProductPrice. - `ProductPrice` (object) - `ProductPrice.Value` (number) The actual price value, excluding VAT. Multiply by VatRate to get the price inc VAT. - `ProductPrice.Recommended` (number,null) The rule based price from a priceList, excluding VAT, if specified. - `ProductPrice.Catalog` (number,null) The original price, if specified. - `ProductPrice.VatRate` (number) A rate to multiply with price to get price inc VAT. 25% VAT equals a VatRate of 1.25. - `ProductPrice.PriceListId` (integer) The priceList id for the price. If multiple priceLists are available then the best (lowest) price will be used. - `ProductPrice.IsBuyable` (boolean) Indicates if the item is buyable or not. Will always be false if the status is closed. An exception will be thrown if IsBuyable is false and an attempt to buy the item is made. The property can be used to hide or show the buy-button. - `ProductPrice.RecommendedQuantity` (number,null) Indicates the default value used as quantity when buying the product. If IsRecommendedQuantityFixed is true, only multiples of this quantity should be allowed. - `ProductPrice.IsRecommendedQuantityFixed` (boolean) If this is set to true only multiples of RecommendedQuantity should be allowed. - `ProductPrice.Standard` (number,null) The standard price, excluding VAT, if specified. - `ProductPrice.ValueIncVat` (number) The actual price value including VAT calculated on the server side. Should be used to display prices including VAT.