Click or drag to resize

IUCServiceCheckAvailability Method

Gets Hospitality Kitchen Current Availability

Namespace: LSOmni.Service
Assembly: LSOmni.Service (in LSOmni.Service.dll) Version: Commerce Service for LS Central 2026.8.0
Syntax
C#
List<HospAvailabilityResponse> CheckAvailability(
	List<HospAvailabilityRequest> request,
	string storeId
)

Parameters

request  ListHospAvailabilityRequest
List of items to get, if empty, get all items
storeId  String
Store to get, if empty get all stores

Return Value

ListHospAvailabilityResponse
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" xmlns:ns2="http://lsretail.com/LSOmniService/Base/2021">
  <soapenv:Header/>
  <soapenv:Body>
     <ser:CheckAvailability>
        <ser:request>
           <ns2:HospAvailabilityRequest>
              <ns2:ItemId>S10025</ns2:ItemId>
              <ns2:UnitOfMeasure></ns2:UnitOfMeasure>
           </ns2:HospAvailabilityRequest>
        </ser:request>
        <ser:storeId>S0017</ser:storeId>
     </ser:CheckAvailability>
  </soapenv:Body>
</soapenv:Envelope>
See Also