Getting the data on ticket and EMD refund if they are present in the booking.
<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>
<?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>