Skip to main content
Skip to main content

retrieveInventoryLevelByItemAndLocation - Inventory Next Module Reference

This documentation provides a reference to the retrieveInventoryLevelByItemAndLocation method. This belongs to the Inventory Next Module.

This method retrieves an inventory level based on its associated inventory item and location.

Example

const inventoryLevel =
await inventoryModuleService.retrieveInventoryLevelByItemAndLocation(
"iitem_123",
"loc_123"
)

Parameters

inventoryItemIdstringRequired
The inventory item's ID.
locationIdstringRequired
The location's ID.
contextContext
A context used to share resources, such as transaction manager, between the application and the module.

Returns

PromisePromise<InventoryLevelDTO>Required
The retrieved inventory level.
Was this section helpful?