To update an product already in the system you'll need to use the /api/Product/ - POST Method
https://api.mintsoft.co.uk/swagger/ui/index#!/Product/Product_UpdateProduct
When updating an Product, the following fields can be updated:
- SKU
- NAME
- Description
- Weight
- LowStockAlertLevel
- Height
- Width
- Depth
- ImageURL
- EAN
- UPC
- Price
- CostPrice
- PackingInstructions
- CustomsDescription
- UnNumber
- InfiniteStock
- UnitsPerParcel
- AdditionalParcelsRequired
- CommodityCodeId
- BackOrder
- CartonSizes
- HasBatchNumber
- HasExpiryDate
- HasSerialNumber
Example Request: (Will update the Ean and ImageURL on Product ID - 168)
{
"ID": 168
"EAN": "EAN123456",
"ImageURL": "https://om.mintsoft.co.uk/Images/NewImage.png"
}
Example Request: (Will update the CommodityCode and CountryOfManucture on Product ID - 168)
{
"CommodityCode": {
"Code": "123456"
},
"CountryOfManufacture": {
"Code": "GB"
}
}
Comments
0 comments
Article is closed for comments.