Advantez

GetDevelopments request and response SOAP examples

getDevelopments

search for developments that you can promote

Support Operations

SOAP 1.1

An example of a SOAP 1.1 request and response

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

<?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>
    <getDevelopments xmlns="http://services.advantez.com/webkits/development/v1.2">
      <advantezKey>string</advantezKey>
      <webServiceKey>string</webServiceKey>
      <developers>
        <int>int</int>
        <int>int</int>
      </developers>
      <countries>
        <int>int</int>
        <int>int</int>
      </countries>
      <regions>
        <int>int</int>
        <int>int</int>
      </regions>
    </getDevelopments>
  </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>
    <getDevelopmentsResponse xmlns="http://services.advantez.com/webkits/development/v1.2">
      <getDevelopmentsResult>
        <developmentDetails id="int" name="string">
          <country id="int" name="string" />
          <region id="int" name="string" />
        </developmentDetails>
        <developmentDetails id="int" name="string">
          <country id="int" name="string" />
          <region id="int" name="string" />
        </developmentDetails>
      </getDevelopmentsResult>
      <result>successful or invalid-proptrack-key or unauthorised-domain or invalid-webservice-key or unexpected-exception or non-secure-protocol or option-not-support or insufficient-permission or invalid-parameter or invalid-advantez-key or rental-unavailable-for-dates or rental-unavailable-for-term</result>
    </getDevelopmentsResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

An example of a SOAP 1.2 request and response

POST /webkits/development.v1.2.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>
    <getDevelopments xmlns="http://services.advantez.com/webkits/development/v1.2">
      <advantezKey>string</advantezKey>
      <webServiceKey>string</webServiceKey>
      <developers>
        <int>int</int>
        <int>int</int>
      </developers>
      <countries>
        <int>int</int>
        <int>int</int>
      </countries>
      <regions>
        <int>int</int>
        <int>int</int>
      </regions>
    </getDevelopments>
  </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>
    <getDevelopmentsResponse xmlns="http://services.advantez.com/webkits/development/v1.2">
      <getDevelopmentsResult>
        <developmentDetails id="int" name="string">
          <country id="int" name="string" />
          <region id="int" name="string" />
        </developmentDetails>
        <developmentDetails id="int" name="string">
          <country id="int" name="string" />
          <region id="int" name="string" />
        </developmentDetails>
      </getDevelopmentsResult>
      <result>successful or invalid-proptrack-key or unauthorised-domain or invalid-webservice-key or unexpected-exception or non-secure-protocol or option-not-support or insufficient-permission or invalid-parameter or invalid-advantez-key or rental-unavailable-for-dates or rental-unavailable-for-term</result>
    </getDevelopmentsResponse>
  </soap12:Body>
</soap12:Envelope>