Service


Click here for a complete list of operations.

CancelBooking

Test

The test form is only available for requests from the local machine.

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 /TransElite.SoapAPI.GroundSpan/Service.asmx HTTP/1.1
Host: clients.hughes.com.au
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.groundrez.com/groundrez/CancelBooking"

<?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>
    <CancelBooking xmlns="http://www.groundrez.com/groundrez">
      <pCancelRequest>
        <BookerInformation>
          <Name>string</Name>
          <Phone>string</Phone>
          <Email>string</Email>
          <Location>string</Location>
          <IATA>string</IATA>
          <ARCNumber>string</ARCNumber>
          <AdditionalEmails>string</AdditionalEmails>
        </BookerInformation>
        <SoapRequestID>long</SoapRequestID>
        <SoapRequestDateTime>dateTime</SoapRequestDateTime>
        <CorporateCode>string</CorporateCode>
      </pCancelRequest>
    </CancelBooking>
  </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>
    <CancelBookingResponse xmlns="http://www.groundrez.com/groundrez">
      <CancelBookingResult>
        <Errors>
          <Error>
            <ErrorCode>int</ErrorCode>
            <Description>string</Description>
          </Error>
          <Error>
            <ErrorCode>int</ErrorCode>
            <Description>string</Description>
          </Error>
        </Errors>
        <CancelSuccessful>boolean</CancelSuccessful>
        <Charges>
          <LateNightHolidaySurcharge>decimal</LateNightHolidaySurcharge>
          <CustomerServiceCharge>decimal</CustomerServiceCharge>
          <AirportFees>decimal</AirportFees>
          <STC>decimal</STC>
          <Parking>decimal</Parking>
          <Tolls>decimal</Tolls>
          <Gratuity>decimal</Gratuity>
          <Base>decimal</Base>
          <Admin>decimal</Admin>
          <Tax>decimal</Tax>
          <Total>decimal</Total>
          <Discounted>boolean</Discounted>
          <Discount>decimal</Discount>
        </Charges>
        <CancelConfirmationNumber>string</CancelConfirmationNumber>
        <OriginalConfirmationNo>string</OriginalConfirmationNo>
        <BookingPlatformId>int</BookingPlatformId>
        <FulfillmentProviderId>int</FulfillmentProviderId>
        <SoapRequestID>long</SoapRequestID>
      </CancelBookingResult>
    </CancelBookingResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

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

POST /TransElite.SoapAPI.GroundSpan/Service.asmx HTTP/1.1
Host: clients.hughes.com.au
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>
    <CancelBooking xmlns="http://www.groundrez.com/groundrez">
      <pCancelRequest>
        <BookerInformation>
          <Name>string</Name>
          <Phone>string</Phone>
          <Email>string</Email>
          <Location>string</Location>
          <IATA>string</IATA>
          <ARCNumber>string</ARCNumber>
          <AdditionalEmails>string</AdditionalEmails>
        </BookerInformation>
        <SoapRequestID>long</SoapRequestID>
        <SoapRequestDateTime>dateTime</SoapRequestDateTime>
        <CorporateCode>string</CorporateCode>
      </pCancelRequest>
    </CancelBooking>
  </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>
    <CancelBookingResponse xmlns="http://www.groundrez.com/groundrez">
      <CancelBookingResult>
        <Errors>
          <Error>
            <ErrorCode>int</ErrorCode>
            <Description>string</Description>
          </Error>
          <Error>
            <ErrorCode>int</ErrorCode>
            <Description>string</Description>
          </Error>
        </Errors>
        <CancelSuccessful>boolean</CancelSuccessful>
        <Charges>
          <LateNightHolidaySurcharge>decimal</LateNightHolidaySurcharge>
          <CustomerServiceCharge>decimal</CustomerServiceCharge>
          <AirportFees>decimal</AirportFees>
          <STC>decimal</STC>
          <Parking>decimal</Parking>
          <Tolls>decimal</Tolls>
          <Gratuity>decimal</Gratuity>
          <Base>decimal</Base>
          <Admin>decimal</Admin>
          <Tax>decimal</Tax>
          <Total>decimal</Total>
          <Discounted>boolean</Discounted>
          <Discount>decimal</Discount>
        </Charges>
        <CancelConfirmationNumber>string</CancelConfirmationNumber>
        <OriginalConfirmationNo>string</OriginalConfirmationNo>
        <BookingPlatformId>int</BookingPlatformId>
        <FulfillmentProviderId>int</FulfillmentProviderId>
        <SoapRequestID>long</SoapRequestID>
      </CancelBookingResult>
    </CancelBookingResponse>
  </soap12:Body>
</soap12:Envelope>