dailyReadings
Get daily readings for a meter point.
Arguments
Returns
[DailyReadingOutput]Possible Errors
- KT-CT-1113: Disabled GraphQL field requested.
- 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-4711: This account cannot access this meter point.
- KT-US-6411: Please correct the datetimes. The from_datetime argument is later than the to_datetime.
- KT-US-6412: No daily readings found for the given period.
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 DailyReadings($input: DailyReadingInput!) {
dailyReadings(input: $input) {
dailyUsage
meterPointId
meterReading
readAt
source
}
}
Variables
{
"input": DailyReadingInput
}
Response
{
"data": {
"dailyReadings": [
{
"dailyUsage": "1.0",
"meterPointId": 58864624,
"meterReading": "1.0",
"readAt": "note-wide-community-make-across",
"source": "doctor-theory-arrive-pressure-meeting"
}
]
}
}