GetRefundData

GetRefundData_1_1

Getting the data on ticket and EMD refund if they are present in the booking.

Request

Format Description
  • BookID - ID of the booking with passengers. Data type - 64-bit integer.
  • Passengers - numbers of passengers in the booking, for which it is needed to receive the refund information. Data type - array.
  • Passengers.Ref - passenger number in the booking. Data type - 32-bit integer.
  • Involuntary - attribute of the involuntary refund (Optional) Data type - bool.
  • SegmentsToRefund - segments for the refund. Data type - array.
  • SegmentsToRefund.Ref - segment for the refund. Data type - 32-bit integer.

Sample

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:avia="http://ws-ibe.com/Avia" xmlns:stl="http://ws-ibe.com/STL">
   <soapenv:Header/>
   <soapenv:Body>
      <avia:GetRefundData_1_1>
         <avia:Request>
            <stl:Requisites>
               <stl:AuthToken>token</stl:AuthToken>
            </stl:Requisites>
            <stl:UserID>11111</stl:UserID>
            <stl:RequestType>P</stl:RequestType>
            <stl:RequestBody>
               <avia:BookID>1000804</avia:BookID>
               <avia:Passengers>
                  <stl:Ref>1</stl:Ref>
               </avia:Passengers>
               <avia:Involuntary>false</avia:Involuntary>
            </stl:RequestBody>
         </avia:Request>
      </avia:GetRefundData_1_1>
   </soapenv:Body>
</soapenv:Envelope>

Response

  • Refunds - ticket refund information. Data type - array.
  • RefundedTicket - information on the refund of one particular ticket. Data type - custom.
  • RefundedTicket.Number - ticket number. Data type - string.
  • RefundedTicket.PassengerRef - number of the passenger who wns the ticket. Data type - 32-bit integer.
  • RefundedTicket.Refundable - ticket refundability attribute. Data type - bool.
  • RefundedTicket.RefundMoney - amount to be refunded. Data type - custom.
  • RefundedTicket.RefundMoney.Currency - currency code of the amount to be refunded. Data type - string.
  • RefundedTicket.RefundMoney.Amount - amount to be refunded. Data type - fractional number.
  • RefundedTicket.RefundTaxes - container with tax information. However, not all the suppliers return detailed information. Data type - custom.
  • RefundedTicket.RefundTaxes.Tax - container with a particular tax information. Data type - custom.
  • RefundedTicket.RefundTaxes.Tax.Amount - tax amount. Data type - fractional number.
  • RefundedTicket.RefundTaxes.Tax.Currency - currency code. Data type - string.
  • RefundedTicket.RefundTaxes.Tax.TaxCode - tax code. Data type - string.
Format Description
  • TicketsRefundData - calculation of the ticket refund. Data type - array of RefundData elements.
  • EMDsRefundData - calculation of the EMD refund. Data type - array of RefundData elements.
Sample
<?xml version="1.0"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body>
    <GetRefundData_1_1Response xmlns="http://ws-ibe.com/Avia">
      <GetRefundData_1_1Result xmlns:a="http://ws-ibe.com/STL" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
        <a:RequestID>10002892708</a:RequestID>
        <a:ResponseBody>
          <TicketsRefundData xmlns="http://websky.travel/Avia">
            <a:RefundData>
              <a:EDNumber i:nil="true"/>
              <a:EDType>Ticket</a:EDType>
              <a:TravellerRef>1</a:TravellerRef>
              <a:Refundable>true</a:Refundable>
              <a:RefundMoney>
                <a:Amount>111</a:Amount>
                <a:Currency>EUR</a:Currency>
              </a:RefundMoney>
              <a:RefundBreakdown xmlns:b="http://websky.travel/STL">
                <b:RefundFares>
                  <a:Amount>100</a:Amount>
                  <a:Currency>EUR</a:Currency>
                </b:RefundFares>
                <b:RefundTaxes>
                  <a:Tax>
                    <a:Amount>11</a:Amount>
                    <a:Currency>EUR</a:Currency>
                    <a:TaxCode>XT</a:TaxCode>
                  </a:Tax>
                </b:RefundTaxes>
              </a:RefundBreakdown>
            </a:RefundData>
          </TicketsRefundData>
        </a:ResponseBody>
      </GetRefundData_1_1Result>
    </GetRefundData_1_1Response>
  </s:Body>
</s:Envelope>