intervalReadings
15 minute interval readings for a meter point.
Arguments
Returns
[IntervalReadingOutput]- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-4711: No readings found for the given period.
- KT-CT-4922: Unauthorized.
- KT-CT-6423: Unauthorized.
- KT-CT-7899: An internal error occurred.
- KT-US-4010: No meter points found with the given ESI ID.
- KT-US-4710: Interval reading period should not exceed more than 1 day.
- KT-US-4711: This account cannot access this meter point.
Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query IntervalReadings($input: IntervalReadingInput!) {
intervalReadings(input: $input) {
consumption
fromDatetime
meterPointId
price
toDatetime
}
}
Variables
{
"input": IntervalReadingInput
}
Response
{
"data": {
"intervalReadings": [
{
"consumption": "1.0",
"fromDatetime": "2010-09-21T18:42:21.520813+00:00",
"meterPointId": 57004760,
"price": "1.0",
"toDatetime": "1987-04-16T08:57:50.798742+00:00"
}
]
}
}