Click or drag to resize

IUCServiceItemCustomerPricesGet 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
This Sample request can be used in SOAP UI application to send request to LS Commerce.

Include minimum data needed to be able to process the request

SOAP Sample Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://lsretail.com/LSOmniService/EComm/2017/Service" xmlns:ns="http://lsretail.com/LSOmniService/Base/2017" xmlns:ns1="http://lsretail.com/LSOmniService/Loy/2017">
  <soapenv:Header/>
  <soapenv:Body>
     <ser:ItemCustomerPricesGet>
        <ser:storeId>S0001</ser:storeId>
        <ser:cardId>10021</ser:cardId>
        <ser:items>
           <ns1:ItemCustomerPrice>
              <ns:Id>40020</ns:Id>
              <ns1:LineNo>1</ns1:LineNo>
              <ns1:Quantity>1</ns1:Quantity>
              <ns1:VariantId>010</ns1:VariantId>
           </ns1:ItemCustomerPrice>
        </ser:items>
     </ser:ItemCustomerPricesGet>
  </soapenv:Body>
</soapenv:Envelope>
See Also