Skip to content

Projected stock ​

A projected stock flow retrieves projected (future) stock quantities for an item from a single connector. This is useful for scenarios where businesses need to forecast inventory levels at a given point in time, for example to determine expected availability.

Flow Setup ​

The projected stock flow is configured with exactly one connector that implements the projected stock capability. Unlike the item synchronization flow, projected stock does not support a current data step or enrichment steps.

Connector ​

The connector is responsible for calculating or retrieving projected stock quantities, typically from an ERP or warehouse management system. The connector returns projected stock entries per warehouse, each containing the expected quantity at the requested date.

API Usage ​

Projected stock data is retrieved on demand via the API endpoint:

GET /items/projected-stock/?itemCode={itemCode}&dateTime={dateTime}&warehouse={warehouse}
ParameterRequiredDescription
itemCodeYesThe item code to retrieve projected stock for.
dateTimeYesThe date and time (ISO 8601) to project stock levels to.
warehouseNoOptional warehouse filter to limit results to a specific location.

The response contains a list of projected stock entries, each with a warehouse and quantity.

WARNING

If the projected stock flow is not configured, the API returns an HTTP 400 error.