API to Update inventory in warehouse
"sku": {
"partNumber": "TEST",
"price": "100",
"quantity": "1",
"warehouse": "HO"
}
}
| Parameter | Data Type | Required/Optional | Description |
|---|---|---|---|
| SecureKey | int | Required | It is a Unique key for accessing the API. For secure key email to support team. |
| partNumber | String | Required | Part number of the product. |
| price | String | Optional | Price of the product. |
| quantity | String | Optional | Quantity of the product. |
| warehouse | String | Required | Ware house code available in erp. |
ON SUCCESS
{
"message": "WMS inventory updated successfully",
"messageType": "Success"
}
ON ERROR
{
"message": "Invalid part number.",
"messageType": "Error"
}
ON ERROR
{
"message": "Invalid Warehouse code.",
"messageType": "Error"
}
}
}
headers = {'Content-Type':'application/json', 'AccessKey' : 'logixerp'}