<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ord:orderQuery xmlns:ord="http://order.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<request>
<orderId>123456</orderId>
</request>
</ord:orderQuery>
</soapenv:Body>
</soapenv:Envelope>
curl --location --request POST 'https://benzine.telcoinabox.com/tiab/UtbOrder' \
--header 'Content-Type: text/xml; charset=utf-8' \
--data-raw '<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ord:orderQuery xmlns:ord="http://order.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<request>
<orderId>123456</orderId>
</request>
</ord:orderQuery>
</soapenv:Body>
</soapenv:Envelope>'
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<error>The element or type could not be found orderQueryResponse</error>
</soap:Body>
</soap:Envelope>