Getting Started
Menu
Catalog Update
Menu
Order Management
Menu
Total Sales
Menu
Suppliers Details
Menu
Buyers Details
Menu
Catalog Update
Catalog Update
Catalog Update
Product removal
Product removal
Product removal from a specific customer can be done with the following URL including customer’s unique id number:
(in the following example – customer_nubmer is 22561):
Request:
Method: POST
URL: api/v1/supplierApi/customers/22561/removeVarietyItems
Body:
pricelistitems[]
Price list items:
Field Name | Type | Mandatory | Field Description |
---|---|---|---|
SKU | String | True | Catalog number |
Price | Number | True | Product price |
The JSON body should include the product SKU (Stock keeping unit) and its price:
Body sample:
[
{"SKU":"7052009","Price":"15.3"},
{"SKU":"7052009M","Price":"153"},
...
]
Response:
{
"status": "ok",
"report": {
"errors": ["7052009"],
"created": [], ],
"updated": [],
“Deleted”: ["7052009M",
....
]
}
{