Request
Body Params application/xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<getBookingRefundCost xmlns="http://partner.v3.webservice.berlogic.de/">
<agencyCode>string</agencyCode>
<agentCode>string</agentCode>
<agentPassword>string</agentPassword>
<salesPointCode>string</salesPointCode>
<lang>string</lang>
<bookingNumber>string</bookingNumber>
<involuntary>true</involuntary>
</getBookingRefundCost>
</soap:Body>
</soap:Envelope>
Request Code Samples
curl --location --request POST '/Partner/Avia/v3' \
--header 'Content-Type: text/xml; charset=utf-8' \
--data-raw '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<getBookingRefundCost xmlns="http://partner.v3.webservice.berlogic.de/">
<agencyCode>string</agencyCode>
<agentCode>string</agentCode>
<agentPassword>string</agentPassword>
<salesPointCode>string</salesPointCode>
<lang>string</lang>
<bookingNumber>string</bookingNumber>
<involuntary>true</involuntary>
</getBookingRefundCost>
</soap:Body>
</soap:Envelope>'
Responses
application/xml <?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<getBookingRefundCostResponse xmlns="http://partner.v3.webservice.berlogic.de/">
<return>
<currency>string</currency>
<penaltyAmount>50</penaltyAmount>
<refundAmount>47</refundAmount>
</return>
</getBookingRefundCostResponse>
</soap:Body>
</soap:Envelope>
Modified at 2025-12-11 04:10:50