GET API/JobTrak/GetCustomerAssetBills/{customerAccountNumber}
Asset lift bills for a given Customer
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerAccountNumber |
Account number of the customer |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of WasteCustomerAssetBill| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerAccountNumber |
Account number of the customer |
string |
None. |
| CustomerName |
Name of the customer |
string |
None. |
| PropertyName |
Name of the property |
string |
None. |
| PropertyAddress |
Address of the property |
string |
None. |
| Cost |
Cost of the bin lift |
string |
None. |
| DateTimeUTC |
UTC Date/Time of the bin lift |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CustomerAccountNumber": "sample string 1",
"CustomerName": "sample string 2",
"PropertyName": "sample string 3",
"PropertyAddress": "sample string 4",
"Cost": "sample string 5",
"DateTimeUTC": "2025-12-14T17:46:12.9118677+00:00"
},
{
"CustomerAccountNumber": "sample string 1",
"CustomerName": "sample string 2",
"PropertyName": "sample string 3",
"PropertyAddress": "sample string 4",
"Cost": "sample string 5",
"DateTimeUTC": "2025-12-14T17:46:12.9118677+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfWasteCustomerAssetBill xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<WasteCustomerAssetBill>
<CustomerAccountNumber>sample string 1</CustomerAccountNumber>
<CustomerName>sample string 2</CustomerName>
<PropertyName>sample string 3</PropertyName>
<PropertyAddress>sample string 4</PropertyAddress>
<Cost>sample string 5</Cost>
<DateTimeUTC>2025-12-14T17:46:12.9118677+00:00</DateTimeUTC>
</WasteCustomerAssetBill>
<WasteCustomerAssetBill>
<CustomerAccountNumber>sample string 1</CustomerAccountNumber>
<CustomerName>sample string 2</CustomerName>
<PropertyName>sample string 3</PropertyName>
<PropertyAddress>sample string 4</PropertyAddress>
<Cost>sample string 5</Cost>
<DateTimeUTC>2025-12-14T17:46:12.9118677+00:00</DateTimeUTC>
</WasteCustomerAssetBill>
</ArrayOfWasteCustomerAssetBill>