<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<con:updateContact xmlns:con="http://contact.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<contact>
<custno>554433</custno>
<ticketNo>123456789</ticketNo>
<priority>3</priority>
<status>CL</status>
<notes>test contact log</notes>
<dateAction>dd/mm/yyyy</dateAction>
<userAction>username</userAction>
</contact>
</con:updateContact>
</soapenv:Body>
</soapenv:Envelope>
curl --location --request POST 'https://benzine.telcoinabox.com/tiab/UtbContact' \
--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>
<con:updateContact xmlns:con="http://contact.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<contact>
<custno>554433</custno>
<ticketNo>123456789</ticketNo>
<priority>3</priority>
<status>CL</status>
<notes>test contact log</notes>
<dateAction>dd/mm/yyyy</dateAction>
<userAction>username</userAction>
</contact>
</con:updateContact>
</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:updateContactResponse xmlns:ns2="http://contact.frontend.ws.utilibill.com.au/">
<return>
<custno>382700</custno>
<dateAction></dateAction>
<notes>test contact log update</notes>
<priority>3</priority>
<status>CL</status>
<subtype></subtype>
<ticketNo>9761515</ticketNo>
<type></type>
<userAction></userAction>
</return>
</ns2:updateContactResponse>
</S:Body>
</S:Envelope>