Create new pricing for a product
POST
/Price
Products
The following must be imported or configured before assigning:
product
warehouse
orderUnit
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/Price' \
--header 'Content-Type: application/json' \
--data-raw '{
"productID": "PROD1964",
"warehouse": "WH1035",
"orderUnit": "DZ",
"priceZone": 260,
"price": 188.79,
"showPrice": 729.89,
"msrp": 182.79,
"canOrder": false
}'
Response Response Example
200 - Price
{
"id": "f9hhjp",
"productID": "PROD1964",
"warehouse": "WH1035",
"orderUnit": "DZ",
"priceZone": 260,
"price": 188.79,
"showPrice": 729.89,
"msrp": 182.79,
"canOrder": false
}
Request
Body Params application/json
Responses
Modified at 2025-05-20 19:30:46