Advantez

GetProvinces request and response SOAP examples

getProvinces

Retrieve a list of provinces within a region

Support Operations

SOAP 1.1

An example of a SOAP 1.1 request and response

POST /webkits/area.v1.1.service HTTP/1.1
Host: services.advantez.com
Content-Type: text/xml; charset=utf-8
Content-Length: length SOAPAction: "http://services.advantez.com/area/v1.1/getProvinces"

<?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>
    <getProvinces xmlns="http://services.advantez.com/area/v1.1">
      <advantezKey>string</advantezKey>
      <webServiceKey>string</webServiceKey>
      <regionId>int</regionId>
    </getProvinces>
  </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>
    <getProvincesResponse xmlns="http://services.advantez.com/area/v1.1">
      <getProvincesResult>
        <province id="int" name="string" />
        <province id="int" name="string" />
      </getProvincesResult>
      <result>successful or invalid-value or non-secure-protocol or unexpected-exception or invalid-proptrack-key or unauthorised-domain or invalid-webservice-key or invalid-advantez-key</result>
    </getProvincesResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

An example of a SOAP 1.2 request and response

POST /webkits/area.v1.1.service HTTP/1.1
Host: services.advantez.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length <?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
  xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <getProvinces xmlns="http://services.advantez.com/area/v1.1">
      <advantezKey>string</advantezKey>
      <webServiceKey>string</webServiceKey>
      <regionId>int</regionId>
    </getProvinces>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length <?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
  xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <getProvincesResponse xmlns="http://services.advantez.com/area/v1.1">
      <getProvincesResult>
        <province id="int" name="string" />
        <province id="int" name="string" />
      </getProvincesResult>
      <result>successful or invalid-value or non-secure-protocol or unexpected-exception or invalid-proptrack-key or unauthorised-domain or invalid-webservice-key or invalid-advantez-key</result>
    </getProvincesResponse>
  </soap12:Body>
</soap12:Envelope>