Click or drag to resize

IUCJsonItemCustomerPricesGet Method

Gets customer specific prices

Namespace: LSOmni.Service
Assembly: LSOmni.Service (in LSOmni.Service.dll) Version: Commerce Service for LS Central 2026.8.0
Syntax
C#
List<ItemCustomerPrice> ItemCustomerPricesGet(
	string storeId,
	string cardId,
	List<ItemCustomerPrice> items
)

Parameters

storeId  String
cardId  String
items  ListItemCustomerPrice
list of items to get prices for

Return Value

ListItemCustomerPrice
Remarks
LS Central WS2: EcomGetCustomerPrice
Example
Sample request including minimum data needed to be able to process the request in LS Commerce
REST Sample Request
{
    "storeId": "S0001",
    "cardId": "10021",
    "items": [{
        "Id": "40020",
        "LineNo": 1,
        "Quantity": 1,
        "VariantId": "010"
    }]
}
See Also