Advantez

CalculateCost request and response SOAP examples

calculateCost

Calculate the booking cost.

Support Operations

SOAP 1.1

An example of a SOAP 1.1 request and response

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

<?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>
    <calculateCost xmlns="http://services.advantez.com/webkits/rental/v1.4">
      <advantezKey>string</advantezKey>
      <webServiceKey>string</webServiceKey>
      <propertyId>int</propertyId>
      <isManaged>boolean</isManaged>
      <totalGuests>short</totalGuests>
      <currencyId>string</currencyId>
      <dateFrom>dateTime</dateFrom>
      <dateTo>dateTime</dateTo>
      <promotionCode>string</promotionCode>
    </calculateCost>
  </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>
    <calculateCostResponse xmlns="http://services.advantez.com/webkits/rental/v1.4">
      <calculateCostResult currency="string">
        <baseCost>decimal</baseCost>
        <commission>decimal</commission>
        <discounts>
          <promotionCode result="invalid or valid or expired or used" amount="decimal" />
          <earlyBooking result="not-applicable or price-increase or price-decrease" amount="decimal" />
          <lastMinute result="not-applicable or price-increase or price-decrease" amount="decimal" />
          <totalNights result="not-applicable or price-increase or price-decrease" amount="decimal" />
        </discounts>
        <cleaning includedInFee="boolean" amount="decimal" />
        <requiredExtras amount="decimal" />
        <taxIncluded>decimal</taxIncluded>
        <totalCostPayable>decimal</totalCostPayable>
      </calculateCostResult>
      <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>
    </calculateCostResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

An example of a SOAP 1.2 request and response

POST /webkits/rental.v1.4.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>
    <calculateCost xmlns="http://services.advantez.com/webkits/rental/v1.4">
      <advantezKey>string</advantezKey>
      <webServiceKey>string</webServiceKey>
      <propertyId>int</propertyId>
      <isManaged>boolean</isManaged>
      <totalGuests>short</totalGuests>
      <currencyId>string</currencyId>
      <dateFrom>dateTime</dateFrom>
      <dateTo>dateTime</dateTo>
      <promotionCode>string</promotionCode>
    </calculateCost>
  </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>
    <calculateCostResponse xmlns="http://services.advantez.com/webkits/rental/v1.4">
      <calculateCostResult currency="string">
        <baseCost>decimal</baseCost>
        <commission>decimal</commission>
        <discounts>
          <promotionCode result="invalid or valid or expired or used" amount="decimal" />
          <earlyBooking result="not-applicable or price-increase or price-decrease" amount="decimal" />
          <lastMinute result="not-applicable or price-increase or price-decrease" amount="decimal" />
          <totalNights result="not-applicable or price-increase or price-decrease" amount="decimal" />
        </discounts>
        <cleaning includedInFee="boolean" amount="decimal" />
        <requiredExtras amount="decimal" />
        <taxIncluded>decimal</taxIncluded>
        <totalCostPayable>decimal</totalCostPayable>
      </calculateCostResult>
      <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>
    </calculateCostResponse>
  </soap12:Body>
</soap12:Envelope>