intervalReadings
15 minute interval readings for a meter point.
Arguments
Returns
[IntervalReadingOutput]Possible Errors
- 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.
Allowed Viewers
Required Permissions
Can access customer queriesQuery Complexity
1Examples
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": "2013-08-03T17:47:28.607361+00:00",
"meterPointId": 85692145,
"price": "1.0",
"toDatetime": "1988-05-06T18:20:18.066562+00:00"
}
]
}
}