To create a new product in the system you'll need to use the /api/Product - PUT method
https://api.mintsoft.co.uk/swagger/ui/index#!/Product/Product_CreateProduct
Only SKU & Name are the only mandatory fields by default, but the more fields that are populated the better for the warehouse.
Basic example:
{
"SKU": "MY-TSHIRT-BLUE-S",
"Name": "MY TSHIRT BLUE SMALL",
"CustomsDescription": "Cotton Tshirt",
"EAN": "3546433",
"UPC": "643636346",
"LowStockAlertLevel": 20,
"Weight": 1,
"Height": 40,
"Width": 20,
"Depth": 1,
"ImageURL": "https://www.mywebsite.com/BlueTshirt.png",
"CommodityCode": {
"Code": "123456"
},
"CountryOfManufacture": {
"Code": "GB"
}
}
Comments
0 comments
Article is closed for comments.