Click or drag to resize

IUCJson.ItemsInStoreGet Method

Get stock status for list of items from one or all stores

Namespace:  LSOmni.Service
Assembly:  LSOmni.Service (in LSOmni.Service.dll) Version: Commerce Service for LS Central 2025.4
Syntax
C#
List<InventoryResponse> ItemsInStoreGet(
	List<InventoryRequest> items,
	string storeId
)

Parameters

items
Type: System.Collections.Generic.List<InventoryRequest>
Items to get status for
storeId
Type: System.String
Store to get Stock status for, if empty get status for all stores

Return Value

Type: List<InventoryResponse>
Remarks
LS Central WS2 : GetInventoryMultiple

If storeId is empty, all store that have item available will be returned

Examples
Sample request including minimum data needed to be able to process the request in LS Commerce
REST Sample Request
{
    "items": [{
        "ItemId": "40020",
        "VariantId": "010"
    }],
    "storeId": "S0001"
}
See Also