Product Identity PUT

URI

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

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

Description

Updates the identifiers for the product. If a given identifier is not supplied in the request body, whatever is currently set for that identifier will be removed.

Example 1

Supply all fields. Must be supplied even if the value is not changing.

Request URI

/product/1007/identity

Request body

{
	"sku": "SKU",
	"ean": "EAN",
	"upc": "UPC",
	"mpn": "MPN",
	"isbn": "ISBN"
}

Example 2

Removing identifiers by not supplying them

Request URI

/product/1010/identity

Request body

{
}