Added
2026-04 Reorder Points Support
6 days ago by ReadMe GitHub Action
The 2026-04 API adds support for managing and reading reorder points. A new endpoint allows bulk upsert of reorder points, and the Inventory response now exposes the active reorder strategy and target.
What's New
New Endpoint
| Method | Path | Description |
|---|---|---|
POST | /api/2026-04/inventory/reorder_points | Bulk upsert reorder points for one or more product/outlet pairs (1–1000 entries per request). |
🔒 Requires: inventory:write scope
Updated Inventory Response
The Inventory schema returned by POST /api/2026-04/inventory and GET /api/2026-04/inventory/{product_id} now includes the following fields:
| Field | Type | Description |
|---|---|---|
reorder_method | string | null | The reorder strategy in use. Either FIXED or MIN_MAX. null when no reorder method is configured. |
reorder_target | number | null | The desired stock level to restore to when reordering. For MIN_MAX, this is the target the reorder amount is computed against. For FIXED, this equals reorder_point + reorder_amount. |
reorder_amount | number | null | Static for FIXED, dynamically computed for MIN_MAX. |
🔒 Requires: inventory:read scope
