PRICE_LIST_TYPE (type of price list), PRICE_LIST_CODE (price list code), and the ITEM_CODE (product code).PRICE_LIST_TYPE and PRICE_LIST_CODE must correspond to an existing price list in the system.ITEM_CODE must correspond to an existing product in the system.DELETE request with the PRICE_LIST_TYPE, PRICE_LIST_CODE, and ITEM_CODE as URL params. Additionals filters can be set with query paramsDELETE /priceLists/:PRICE_LIST_TYPE/:PRICE_LIST_CODE/prices/:ITEM_CODE?start_date=YYYY-MM-DD&dimension_grouping=GROUPING1PRICE_LIST_CODE does not exist, the API will return an error message:{
"message": "Price list not found"
}ITEM_CODE does not exist, the API will return an error message:{
"message": "Product not found with item_code: {{item_code}}"
}start_date does not exist, the API will return an error message:{
"message": "Product price not found with item_code: {{item_code}} and {{start_date}}"
}