GET v1/meter/readings?id={id}&page={page}&period={period}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| page | integer |
Default value is 1 |
|
| period | ProductionPeriodicity |
Default value is Daily |
Body Parameters
None.
Response Information
Resource Description
MeterReadingsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalItems | integer |
None. |
|
| MeterReadings | Collection of MeterReadings |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalItems": 1,
"MeterReadings": [
{
"Id": 1,
"Date": "2025-05-20T06:33:39.9080349+01:00",
"Voltage1": 1.0,
"Voltage2": 1.0,
"Voltage3": 1.0,
"Current1": 1.0,
"Current2": 1.0,
"Current3": 1.0,
"TotalEnergy": 1.0,
"DayEnergy": 1.0
},
{
"Id": 1,
"Date": "2025-05-20T06:33:39.9080349+01:00",
"Voltage1": 1.0,
"Voltage2": 1.0,
"Voltage3": 1.0,
"Current1": 1.0,
"Current2": 1.0,
"Current3": 1.0,
"TotalEnergy": 1.0,
"DayEnergy": 1.0
}
]
}
application/xml, text/xml
Sample:
<MeterReadingsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/I9P.MeterMonitor.API.Models">
<MeterReadings>
<MeterReadings>
<Current1>1</Current1>
<Current2>1</Current2>
<Current3>1</Current3>
<Date>2025-05-20T06:33:39.9080349+01:00</Date>
<DayEnergy>1</DayEnergy>
<Id>1</Id>
<TotalEnergy>1</TotalEnergy>
<Voltage1>1</Voltage1>
<Voltage2>1</Voltage2>
<Voltage3>1</Voltage3>
</MeterReadings>
<MeterReadings>
<Current1>1</Current1>
<Current2>1</Current2>
<Current3>1</Current3>
<Date>2025-05-20T06:33:39.9080349+01:00</Date>
<DayEnergy>1</DayEnergy>
<Id>1</Id>
<TotalEnergy>1</TotalEnergy>
<Voltage1>1</Voltage1>
<Voltage2>1</Voltage2>
<Voltage3>1</Voltage3>
</MeterReadings>
</MeterReadings>
<TotalItems>1</TotalItems>
</MeterReadingsModel>