Request
Body Params application/xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<changePassword xmlns="http://partner.v3.webservice.berlogic.de/">
<agentCode>string</agentCode>
<password>string</password>
<newPassword>string</newPassword>
</changePassword>
</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>
<changePassword xmlns="http://partner.v3.webservice.berlogic.de/">
<agentCode>string</agentCode>
<password>string</password>
<newPassword>string</newPassword>
</changePassword>
</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>
<changePasswordResponse xmlns="http://partner.v3.webservice.berlogic.de/">
<return>string</return>
</changePasswordResponse>
</soap:Body>
</soap:Envelope>
Modified at 2025-12-11 04:10:50