Product Price PUT

URI

https://{DATACENTER}.brightpearlconnect.com/public-api/{ACCOUNT}
/product-service/product-price/{PRODUCT-ID}/price-list

Refer to our documentation on URI syntax for more information on how to construct URIs.

Description

This message enables you to update prices on different price lists for a product.

The following fields may be used to update the prices

  • priceLists: An array of price list objects to be updated on this product.
  • priceListId: ID of the price list to be updated.
  • sku: The product's SKU for this price list
  • quantityPrice: An object containing various breaks and prices for a particular price list of this product. The supplied prices are considered as net prices.

Example

Update product price

Request URI

/product-price/1253/price-list

Request body

{
	"priceLists": [
		{
			"priceListId": 1,
			"quantityPrice": {
				"1": "1",
				"5": "9.555",
				"15": "9",
				"25": "8",
				"50": "7.5",
				"200": "7"
			},
			"sku": "a-sku-identifier"
		},
		{
			"priceListId": 2,
			"quantityPrice": {
				"1": "1",
				"5": "9.555",
				"15": "9",
				"25": "8",
				"50": "7.5",
				"200": "7"
			},
			"sku": "another-sku-identifier"
		}
	]
}

Response

{
}