Update a Product
PUT
/Product/{id}
Products
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/Product/' \
--header 'Content-Type: application/json' \
--data-raw '{
"productID": "PROD1500",
"orderUnit": "LB",
"orderUnitDescription": "Pack",
"vendorID": "VEND0962",
"description": "New range of formal shirts are designed keeping you in mind. With fits and styling that will make you stand apart",
"alternateDescription": "The Football Is Good For Training And Recreational Purposes",
"buyer": "USER2218",
"mpc": "VYD-68804",
"upc_ean": "058799293809",
"category": "Bespoke",
"brand": "Gorgeous Cotton",
"deliveryGroup": "5448",
"weightUnit": "Pounds",
"netWeight": 116.19,
"grossWeight": 44.75,
"isKit": false,
"active": true,
"test": false,
"availableInOrderingSite": false,
"availableForFreeStock": false,
"packDescription": "1 per case",
"sizeDescription": "0.5 oz",
"unitQty": 8,
"roundTo": 2,
"maxOrderQty": 2,
"minOrderQty": 7,
"packQty": 20,
"isOrderable": true,
"canSample": true,
"allowanceType": "Rebate",
"negotiationStatus": "Open",
"extraText1": "laborum pariatur officia proident",
"extraText2": "ipsum reprehenderit eu do voluptate",
"extraText3": "nostrud ex dolore Excepteur voluptate",
"extraText4": "labore culpa aute enim",
"extraText5": "nulla ullamco velit",
"price": 622.79,
"showPrice": 881.29,
"msrp": 657,
"isMarketPrice": false,
"cashbackQuantity": 56,
"cashbackPercent": 0,
"department": "13",
"inventory": 870
}'
Response Response Example
200 - Product
{
"id": "a7d979",
"productID": "PROD1500",
"orderUnit": "LB",
"orderUnitDescription": "Pack",
"vendorID": "VEND0962",
"description": "New range of formal shirts are designed keeping you in mind. With fits and styling that will make you stand apart",
"alternateDescription": "The Football Is Good For Training And Recreational Purposes",
"buyer": "USER2218",
"mpc": "VYD-68804",
"upc_ean": "058799293809",
"category": "Bespoke",
"brand": "Gorgeous Cotton",
"deliveryGroup": "5448",
"weightUnit": "Pounds",
"netWeight": 116.19,
"grossWeight": 44.75,
"isKit": false,
"active": true,
"test": false,
"availableInOrderingSite": false,
"availableForFreeStock": false,
"packDescription": "1 per case",
"sizeDescription": "0.5 oz",
"unitQty": 8,
"roundTo": 2,
"maxOrderQty": 2,
"minOrderQty": 7,
"packQty": 20,
"isOrderable": true,
"canSample": true,
"allowanceType": "Rebate",
"negotiationStatus": "Open",
"extraText1": "laborum pariatur officia proident",
"extraText2": "ipsum reprehenderit eu do voluptate",
"extraText3": "nostrud ex dolore Excepteur voluptate",
"extraText4": "labore culpa aute enim",
"extraText5": "nulla ullamco velit",
"price": 622.79,
"showPrice": 881.29,
"msrp": 657,
"isMarketPrice": false,
"cashbackQuantity": 56,
"cashbackPercent": 0,
"department": "13",
"inventory": 870
}
Request
Path Params
id
stringÂ
required
Body Params application/json
Responses
Modified at 2025-05-27 15:00:09