<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ord:orderCreate xmlns:ord="http://order.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<createRequest>
<custNo>554433</custNo>
<orderType>SRVC_ORD</orderType>
<orderAction>CHANGE_WME_PRODUCT</orderAction>
<orderItems>
<wmeChangeProductReqItem>
<lineSeqNo>1</lineSeqNo>
<productCodes>
<products>
<accessLevel>0</accessLevel>
<classCode>E0001</classCode>
<productCode>CBAID</productCode>
</products>
</productCodes>
</wmeChangeProductReqItem>
</orderItems>
</createRequest>
</ord:orderCreate>
</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:orderCreate xmlns:ord="http://order.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<createRequest>
<custNo>554433</custNo>
<orderType>SRVC_ORD</orderType>
<orderAction>CHANGE_WME_PRODUCT</orderAction>
<orderItems>
<wmeChangeProductReqItem>
<lineSeqNo>1</lineSeqNo>
<productCodes>
<products>
<accessLevel>0</accessLevel>
<classCode>E0001</classCode>
<productCode>CBAID</productCode>
</products>
</productCodes>
</wmeChangeProductReqItem>
</orderItems>
</createRequest>
</ord:orderCreate>
</soapenv:Body>
</soapenv:Envelope>'
<?xml version="1.0" encoding="UTF-8"?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header />
<S:Body>
<ns2:orderCreateResponse xmlns:ns2="http://order.frontend.ws.utilibill.com.au/">
<return>
<errorCode>0</errorCode>
<orderId>74705</orderId>
</return>
</ns2:orderCreateResponse>
</S:Body>
</S:Envelope>