A cornerstone of your Order Management System, this workflow ensures seamless inventory control through fully automated stock checks, leading to a direct reduction in operational costs. It provides real-time alerts to the responsible personnel, enabling proactive issue detection and resolution to eliminate the financial damages associated with unexpected stock-outs.
Receives orders from external sources (e.g., website, form, or app) via API.
Checks the validity of the order (e.g., complete product, valid customer details)
Retrieve inventory information and compare it with the order request.
Create a JSON request with the following format to call the Webhook Url
{ "id": "ORDER1001", "customer": { "name": "Customer", "email": "[email protected]" }, "items": [ { "sku": "SKU001", "quantity": 2, "name": "Product A", "price": 5000 }, { "sku": "SKU002", "quantity": 2, "name": "Product C", "price": 10000 } ], "total": 30000 }
Define the greater than or less than conditions on the inventory level to enter the corresponding branches.