<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<call:getUnbilledCallsSummary xmlns:call="http://call.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<custNo>554433</custNo>
</call:getUnbilledCallsSummary>
</soapenv:Body>
</soapenv:Envelope>
curl --location --request POST 'https://benzine.telcoinabox.com/tiab/UtbCall' \
--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>
<call:getUnbilledCallsSummary xmlns:call="http://call.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<custNo>554433</custNo>
</call:getUnbilledCallsSummary>
</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:getUnbilledCallsSummaryResponse xmlns:ns2="http://call.frontend.ws.utilibill.com.au/">
<unbilledCallsSummary>
<calls>
<csn>0395551234</csn>
<department></department>
<groupName>Telcoinabox - Internal & Test</groupName>
<groupNo>237</groupNo>
<lineseqno>82</lineseqno>
<name>Test Service 1</name>
<totalCalls>1</totalCalls>
<totalCharge>0.0000</totalCharge>
<totalOther>0</totalOther>
<totalVSPCost>0.0100</totalVSPCost>
</calls>
<calls>
<csn>0395551235</csn>
<department></department>
<groupName>Telcoinabox - Internal & Test</groupName>
<groupNo>237</groupNo>
<lineseqno>80</lineseqno>
<name>Test Service 2</name>
<totalCalls>3</totalCalls>
<totalCharge>0.0000</totalCharge>
<totalOther>0</totalOther>
<totalVSPCost>0.0350</totalVSPCost>
</calls>
</unbilledCallsSummary>
</ns2:getUnbilledCallsSummaryResponse>
</S:Body>
</S:Envelope>