GET api/BillingUnits?UtilityId={UtilityId}&PropertyId={PropertyId}&BillDate={BillDate}&VendorBillId={VendorBillId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UtilityId

integer

Required

PropertyId

integer

Required

BillDate

date

Required

VendorBillId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of BillingUnit
NameDescriptionTypeAdditional information
AccountNum

integer

None.

UnitId

integer

None.

CustomerType

integer

None.

CustomerName

string

None.

Address

string

None.

PreviousReadDate

date

None.

PreviousReadAmt

decimal number

None.

PreviousReadType

string

None.

CurrentReadDate

date

None.

CurrentReadAmt

decimal number

None.

CurrentReadType

string

None.

Usage

integer

None.

Rate

decimal number

None.

TotalCharge

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AccountNum": 1,
    "UnitId": 2,
    "CustomerType": 3,
    "CustomerName": "sample string 4",
    "Address": "sample string 5",
    "PreviousReadDate": "2024-04-03T09:14:56.9761862+00:00",
    "PreviousReadAmt": 6.1,
    "PreviousReadType": "sample string 7",
    "CurrentReadDate": "2024-04-03T09:14:56.9761862+00:00",
    "CurrentReadAmt": 8.1,
    "CurrentReadType": "sample string 9",
    "Usage": 10,
    "Rate": 11.1,
    "TotalCharge": 12.0
  },
  {
    "AccountNum": 1,
    "UnitId": 2,
    "CustomerType": 3,
    "CustomerName": "sample string 4",
    "Address": "sample string 5",
    "PreviousReadDate": "2024-04-03T09:14:56.9761862+00:00",
    "PreviousReadAmt": 6.1,
    "PreviousReadType": "sample string 7",
    "CurrentReadDate": "2024-04-03T09:14:56.9761862+00:00",
    "CurrentReadAmt": 8.1,
    "CurrentReadType": "sample string 9",
    "Usage": 10,
    "Rate": 11.1,
    "TotalCharge": 12.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfBillingUnit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APL.Models">
  <BillingUnit>
    <AccountNum>1</AccountNum>
    <Address>sample string 5</Address>
    <CurrentReadAmt>8.1</CurrentReadAmt>
    <CurrentReadDate>2024-04-03T09:14:56.9761862+00:00</CurrentReadDate>
    <CurrentReadType>sample string 9</CurrentReadType>
    <CustomerName>sample string 4</CustomerName>
    <CustomerType>3</CustomerType>
    <PreviousReadAmt>6.1</PreviousReadAmt>
    <PreviousReadDate>2024-04-03T09:14:56.9761862+00:00</PreviousReadDate>
    <PreviousReadType>sample string 7</PreviousReadType>
    <Rate>11.1</Rate>
    <TotalCharge>12</TotalCharge>
    <UnitId>2</UnitId>
    <Usage>10</Usage>
  </BillingUnit>
  <BillingUnit>
    <AccountNum>1</AccountNum>
    <Address>sample string 5</Address>
    <CurrentReadAmt>8.1</CurrentReadAmt>
    <CurrentReadDate>2024-04-03T09:14:56.9761862+00:00</CurrentReadDate>
    <CurrentReadType>sample string 9</CurrentReadType>
    <CustomerName>sample string 4</CustomerName>
    <CustomerType>3</CustomerType>
    <PreviousReadAmt>6.1</PreviousReadAmt>
    <PreviousReadDate>2024-04-03T09:14:56.9761862+00:00</PreviousReadDate>
    <PreviousReadType>sample string 7</PreviousReadType>
    <Rate>11.1</Rate>
    <TotalCharge>12</TotalCharge>
    <UnitId>2</UnitId>
    <Usage>10</Usage>
  </BillingUnit>
</ArrayOfBillingUnit>