Click or drag to resize

IUCServiceContactGet Method

Search for Member Contact by different searchType methods.

Namespace: LSOmni.Service
Assembly: LSOmni.Service (in LSOmni.Service.dll) Version: Commerce Service for LS Central 2026.8.0
Syntax
C#
MemberContact ContactGet(
	ContactSearchType searchType,
	string search
)

Parameters

searchType  ContactSearchType
Field to search by
search  String
Search value

Return Value

MemberContact
Remarks
LS Central WS2: GetMemberContact2

LS Central WS4: GetMemberContactInfo

Example
This Sample request can be used in SOAP UI application to send request to LS Commerce.

Sample request to get Contact by Name

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:ContactGet>
        <ser:searchType>Name</ser:searchType>
        <ser:search>Sarah Parker</ser:search>
     </ser:ContactGet>
  </soapenv:Body>
</soapenv:Envelope>
See Also