<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<stat:GetLineItem xmlns:stat="http://statement.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<lineItem>
<custno>554433</custno>
<stmtno>123</stmtno>
</lineItem>
</stat:GetLineItem>
</soapenv:Body>
</soapenv:Envelope>
curl --location --request POST 'https://benzine.telcoinabox.com/tiab/UtbStatement' \
--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>
<stat:GetLineItem xmlns:stat="http://statement.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<lineItem>
<custno>554433</custno>
<stmtno>123</stmtno>
</lineItem>
</stat:GetLineItem>
</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:GetLineItemResponse xmlns:ns2="http://statement.frontend.ws.utilibill.com.au/">
<return>
<isError>false</isError>
<statementitems>
<amtCharge>12.0000</amtCharge>
<amtChargeTax>1.2000</amtChargeTax>
<custNo>554433</custNo>
<itemName>Internet Access Fee</itemName>
<itemNo>252</itemNo>
<itemType>CA</itemType>
<stmtNo>35</stmtNo>
<vspCost>12.0000</vspCost>
</statementitems>
<statementitems>
<amtCharge>26.3800</amtCharge>
<amtChargeTax>2.6380</amtChargeTax>
<custNo>554433</custNo>
<itemName>Voicemail/CallScreen</itemName>
<itemNo>253</itemNo>
<itemType>CC</itemType>
<stmtNo>35</stmtNo>
<vspCost>23.3700</vspCost>
</statementitems>
<statementitems>
<amtCharge>31.0200</amtCharge>
<amtChargeTax>3.1020</amtChargeTax>
<custNo>554433</custNo>
<itemName>Mobile to fixed calls</itemName>
<itemNo>254</itemNo>
<itemType>CE</itemType>
<stmtNo>35</stmtNo>
<vspCost>31.0200</vspCost>
</statementitems>
</return>
</ns2:GetLineItemResponse>
</S:Body>
</S:Envelope>