API Reference
About Inventory
Products in Omnium are enriched with inventory items. The inventory item carries information about:
- Physical inventory
- Reserved inventory
- Available inventory
- Inventory location
An inventory item identifier/key is created from the variant and warehouse code. The warehouse code is the ID of the store/warehouse where the inventory is located.
Creating Inventory Items
- Add inventory in the GUI
- Import/export inventory items in the GUI
- Import through API
Inventory Item Model
For details, refer to the Omnium Inventory Model.
Inventory Sample
Inventory items for the store OmniumBikeShop could look like this:
In the Omnium GUI, the inventory item can be displayed as shown below:
Create Inventory Items
Add inventory items to Omnium by posting a list of OmniumInventoryItem
to the add many endpoint. If the item exists, it will be overridden by the object posted to the endpoint.
For more details, visit the Create inventory items documentation.
Get Inventory Item
Get Single Inventory Item
Inventory items are fetched via a GET request to the inventory endpoint.
An optional parameter for warehouse IDs is available. If warehouseIds
is empty, all inventory items for the SKU will be returned.
For more details, visit the Get inventory item documentation.
Search Inventory Items
Sample request for a delta query:
Sample request for inventory for a specific market:
Sample response if the number of inventory items exceeds 1000 (totalHits):
For more details, visit the Search inventory items documentation.
Update Inventory Item
To update an inventory item, send a PUT request with the inventory object to the inventory update endpoint.
For more details, visit the Update inventory item documentation.
Update Multiple Inventory Items
To update multiple inventory items, send a PUT request to the inventory update many endpoint.
Delete Inventory Item
To delete an inventory item, send a DELETE request to the inventory endpoint:
For more details, visit the Delete inventory item documentation.
More Inventory Information
ATP Values
Available to Promise (ATP) refers to the available quantities of the requested product and its expected delivery due dates.
For more details, visit the ATP model documentation.
Inventory handling in product search API
Overview
The Product Search API allows retrieving product data, including inventory information. However, it is important to understand how inventory data is handled and updated within the system.
Inventory Data in Search Results
- The inventory field is not live but is updated via a scheduled task.
- If a product has inventory in the queried market, the inventory field will be included in the response.
- If a product has no inventory, the inventory field will be absent (not an empty array).
Update mechanism
- Inventory data is updated through a scheduled task called Product Inventory.
- This task can be added from
Config → Advanced → Scheduled Task
. - If an inventory change is made, the updated data will not be immediately reflected in the Product Search API response until the scheduled task runs.
- This can lead to cases where a product temporarily appears without an
inventory
field even though inventory exists.
Example request
Request
Response examples
Case 1: Inventory Exists
Case 2: No inventory (Field absent)
Important notes
- The
inventory
field will not be present if the product has no inventory. - If inventory was recently updated, the scheduled task may not have processed the changes yet.