Retailer


Click here for a complete list of operations.

GetSales

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
lvLogin:
lvPassword:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /Retailer.asmx HTTP/1.1
Host: 831483.bhlmuz689.asia
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/LazboyWeb/Retailer/GetSales"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetSales xmlns="http://tempuri.org/LazboyWeb/Retailer">
      <lvLogin>string</lvLogin>
      <lvPassword>string</lvPassword>
    </GetSales>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetSalesResponse xmlns="http://tempuri.org/LazboyWeb/Retailer">
      <GetSalesResult>
        <xsd:schema>schema</xsd:schema>xml</GetSalesResult>
    </GetSalesResponse>
  </soap:Body>
</soap:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /Retailer.asmx/GetSales?lvLogin=string&lvPassword=string HTTP/1.1
Host: 831483.bhlmuz689.asia
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<DataSet xmlns="http://tempuri.org/LazboyWeb/Retailer">
  <schema xmlns="http://www.w3.org/2001/XMLSchema">schema</schema>xml</DataSet>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /Retailer.asmx/GetSales HTTP/1.1
Host: 831483.bhlmuz689.asia
Content-Type: application/x-www-form-urlencoded
Content-Length: length

lvLogin=string&lvPassword=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<DataSet xmlns="http://tempuri.org/LazboyWeb/Retailer">
  <schema xmlns="http://www.w3.org/2001/XMLSchema">schema</schema>xml</DataSet>