Added

2026-04 Reorder Points Support

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

MethodPathDescription
POST/api/2026-04/inventory/reorder_pointsBulk 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:

FieldTypeDescription
reorder_methodstring | nullThe reorder strategy in use. Either FIXED or MIN_MAX. null when no reorder method is configured.
reorder_targetnumber | nullThe 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_amountnumber | nullStatic for FIXED, dynamically computed for MIN_MAX.

🔒 Requires: inventory:read scope