IUCServiceActivityAvailabilityGet Method |
Returns list of available time-slots/prices for a specific location,product and date
Namespace: LSOmni.ServiceAssembly: LSOmni.Service (in LSOmni.Service.dll) Version: Commerce Service for LS Central 2026.8.0
SyntaxList<AvailabilityResponse> ActivityAvailabilityGet(
string locationNo,
string productNo,
DateTime activityDate,
string contactNo,
string contactAccount,
string optionalResource,
string promoCode,
string activityNo,
int noOfPersons,
string guestType
)
Parameters
- locationNo String
- productNo String
- activityDate DateTime
- contactNo String
- contactAccount String
- optionalResource String
- promoCode String
- activityNo String
- noOfPersons Int32
- guestType String
Return Value
ListAvailabilityResponse
Remarks
LS Central WS2: GetAvailabilityVx
Optional to include required resource (if only specific resource) and contactNo for accurate pricing.
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
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://lsretail.com/LSOmniService/EComm/2017/Service">
<soapenv:Header/>
<soapenv:Body>
<ser:ActivityAvailabilityGet>
<ser:locationNo>CAMBRIDGE</ser:locationNo>
<ser:productNo>MASSAGE30</ser:productNo>
<ser:activityDate>2020-02-01T18:06:38</ser:activityDate>
<ser:contactNo>MO000008</ser:contactNo>
<ser:optionalResource></ser:optionalResource>
<ser:promoCode></ser:promoCode>
</ser:ActivityAvailabilityGet>
</soapenv:Body>
</soapenv:Envelope>
See Also