Order management
Orders, stock, payments and shipping stay in step automatically — and everything you can do on screen, your other systems can do through the API.
Separate workspaces for each business, and separate stores inside them. Nothing leaks between them.
Placing an order holds the stock straight away. Cancelling puts it back. Shipping takes it out for good.
Record what's been paid and refunded; the order's paid status keeps itself up to date.
Ship what you have today, the rest later. Tracking details live on the order.
Issue a key per system, limit it to one store, make it read-only, revoke it any time.
Point us at a web address and we can notify it when orders change.
Point your website, till system or warehouse tool at the same endpoints the admin uses.
POST /api/public/v1/orders
Authorization: Bearer oms_••••••••
Idempotency-Key: cart-91823
{
"store_id": "…",
"items": [{ "sku": "AUR-BLK", "quantity": 2 }],
"customer": { "name": "Ada L.", "email": "ada@example.com" }
}