GET api/CurrentStatus?username={username}&password={password}
Gets the current status of all the meters registered to a utility
Request Information
URI Parameters
| Name | Description | Type |
|---|---|---|
| username |
User Name |
string |
| password |
Password |
string |
Header
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Meter| Name | Description | Type |
|---|---|---|
| Meter_ID |
This is a unique number identifying the meter |
string |
| LCD_Read |
This is the numeric value displayed in the digital format on the endpoint |
string |
| Billing_Read |
It is the value exported for billing purpose |
string |
| Read_Date |
This is the last communication date of the meter with system |
string |
| Unit |
This is the consumption measurement unit of the meter |
string |
| Reference |
This is the number identifying the consumer Id associated to the meter |
string |
| Account_Name |
This is the consumer name associated with the meter |
string |
| Address |
The address of consumer associated to meter |
string |
| Utility_Defined |
This is the custom note associated with the meter |
string |
Response Formats
application/json, text/json
Sample:
[
{
"Meter_ID": "3003008",
"LCD_Read": "10357889",
"Billing_Read": "10357889",
"Read_Date": "05/15/2018",
"Unit": "G",
"Reference": "2600",
"Account_Name": "Jack",
"Address": "Florida",
"Utility_Defined": "Custom Note"
}
]
application/xml, text/xml
Sample:
<?xml version="1.0" encoding="utf-16"?>
<ArrayOfMeter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Meter>
<Meter_ID>3003008</Meter_ID>
<LCD_Read>10357889</LCD_Read>
<Billing_Read>10357889</Billing_Read>
<Read_Date>05/15/2018</Read_Date>
<Unit>G</Unit>
<Reference>2600</Reference>
<Account_Name>Jack</Account_Name>
<Address>Florida</Address>
<Utility_Defined>Custom Note</Utility_Defined>
</Meter>
</ArrayOfMeter>