- Getting Started
- Integration Guides
- Payment Integration
- CDR Integration
- Test Environment Data Sets
- Mobile Flows
- ConnectYou Flows
- NBN Flows
- API Documentation
- Customer
- Payment Method
- Transaction
- Plan
- Service
- Mobile
- Address
- Service Qualification
- Order
- Enquiry
- Appointment
- NBN
- Attachment
- API Documentation (Legacy APIs)
- WSDL Summary
- API Guide
- Account Charges
- ConnectYou
- Contact Log
- Device
- Mobile
- Notifications
- Pooled Resource
- Order
- Mobile Order
- Create a Mobile Service (New Number)
- Create a Mobile Service (Port In Number)
- Create a Pre-Activation Mobile Order (New Number)
- Bar/Unbar/Disconnect a Mobile Service
- Change Mobile Rate Plan
- Change a Mobile Number
- Replace a SIM Card
- Modify Mobile Feature(s)
- Modify Mobile Feature Setting(s)
- Change Excess Spend Limit
- Add a Once-off Bolt On
- Add a Recurring Bolt On Pack
- Remove a Recurring Bolt On Pack
- Mobile (Data Pool) Order
- ConnectYou (SIP Trunk) Order
- Other Rated Order
- Create an Order
- Cancel an Order
- Query an Order
- Reset an Order
- Mobile Order
- Statements & Billing
- Unbilled Calls
- OTP
- Reference Data
Get a List of Customer Bills
Testing Env
https://benzine.telcoinabox.com/tiab
Testing Env
https://benzine.telcoinabox.com/tiab
POST
https://benzine.telcoinabox.com/tiab
statement
UtbStatement:getStatement#
Request
Header Params
Content-Type
stringĀ
required
Example:
text/xml; charset=utf-8
Body Params application/xml
Body
objectĀ
required
GetStatement
objectĀ
required
Example
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<stat:GetStatement xmlns:stat="http://statement.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<statement>
<custno>554433</custno>
</statement>
</stat:GetStatement>
</soapenv:Body>
</soapenv:Envelope>
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
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:GetStatement xmlns:stat="http://statement.frontend.ws.utilibill.com.au/">
<login>
<userName>username</userName>
<password>password</password>
</login>
<statement>
<custno>554433</custno>
</statement>
</stat:GetStatement>
</soapenv:Body>
</soapenv:Envelope>'
Responses
š¢200GetStatement response
application/xml
Body
Body
objectĀ
required
GetStatementResponse
objectĀ
required
Example
<?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:GetStatementResponse xmlns:ns2="http://statement.frontend.ws.utilibill.com.au/">
<return>
<isError>false</isError>
<statements>
<adjustments>-3284.4000</adjustments>
<carriedForward>-9.9965</carriedForward>
<currBalance>2020.8135</currBalance>
<currCharges>2030.8100</currCharges>
<custNo>554433</custNo>
<dateDue>2015-09-15T00:00:00+10:00</dateDue>
<dateIssued>2015-08-28T00:00:00+10:00</dateIssued>
<payments>-10.0000</payments>
<prevBalance>3284.4035</prevBalance>
<printed></printed>
<stmtNo>156</stmtNo>
<stmtType>I</stmtType>
<tax>184.6400</tax>
</statements>
<statements>
<adjustments>-1891.9100</adjustments>
<carriedForward>0.0035</carriedForward>
<currBalance>3284.4035</currBalance>
<currCharges>3284.4000</currCharges>
<custNo>554433</custNo>
<dateDue>2015-08-15T00:00:00+10:00</dateDue>
<dateIssued>2015-07-28T00:00:00+10:00</dateIssued>
<payments>0.0000</payments>
<prevBalance>1891.9135</prevBalance>
<printed></printed>
<stmtNo>155</stmtNo>
<stmtType>I</stmtType>
<tax>298.6000</tax>
</statements>
</return>
</ns2:GetStatementResponse>
</S:Body>
</S:Envelope>
Modified atĀ 2025-05-05 00:42:27