estimatedSupplyPointReadings
Return actual readings within the requested period followed by forward-estimated readings up to end_at. Estimated readings are extrapolated from the most recent actual reading.
Arguments
Optional meter device identifier to filter readings.
The end of the requested period (exclusive, timezone-aware).
The market this supply point belongs to.
The reading type to estimate. PEAK is not supported.
Optional register identifier to filter readings.
The start of the requested period (inclusive, timezone-aware).
The market-level external identifier of the supply point (e.g. ICP number).
The time granularity for aggregating readings.
IANA timezone name used for aggregation boundaries (e.g. 'Pacific/Auckland').
Returns
[EstimatedSupplyPointReadingType]A single reading interval for a supply point, either actual or estimated.
Possible Errors
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-13605: No estimation algorithm configured for the requested parameters.
- KT-CT-13610: Supply point not found or not configured for estimation.
- KT-CT-13611: No readings found for the requested period.
- KT-CT-13612: PEAK reading type is not supported for estimation.
- KT-CT-13613: Market not configured for supply point readings.
- KT-CT-13614: Invalid timezone.
- KT-CT-13615: No readings available for estimation.
- KT-CT-13616: Meter readings are invalid.
- KT-CT-13617: Unsupported time granularity for estimation.
- KT-CT-13618: Register metadata not found for supply point.
- KT-CT-13619: Multiple register metadata records found for supply point.
- KT-CT-7899: An internal error occurred.
Allowed Viewers
Required Permissions
Can estimate meter readingsQuery Complexity
3Examples
query EstimatedSupplyPointReadings(
$deviceId: ID,
$endAt: DateTime!,
$marketName: String!,
$readingType: ReadingTypes!,
$registerId: ID,
$startAt: DateTime!,
$supplyPointId: String!,
$timeGranularity: TimeGranularities!,
$timezone: String!
) {
estimatedSupplyPointReadings(
deviceId: $deviceId,
endAt: $endAt,
marketName: $marketName,
readingType: $readingType,
registerId: $registerId,
startAt: $startAt,
supplyPointId: $supplyPointId,
timeGranularity: $timeGranularity,
timezone: $timezone
) {
intervalEnd
intervalStart
isEstimated
quality
value
}
}
Variables
{
"deviceId": "32614765",
"endAt": "2020-08-24T11:29:29.523562+00:00",
"marketName": "himself-behavior-day-us-anything",
"readingType": "INTERVAL",
"registerId": "51000325",
"startAt": "1972-04-09T23:47:29.712008+00:00",
"supplyPointId": "24604218",
"timeGranularity": "FIVE_MIN",
"timezone": "what-personal-food-TV-general"
}
Response
{
"data": {
"estimatedSupplyPointReadings": [
{
"intervalEnd": "2005-05-14T00:45:45.155862+00:00",
"intervalStart": "1999-05-19T06:25:44.952149+00:00",
"isEstimated": true,
"quality": "visit-drive-base-friend-present",
"value": "1.0"
}
]
}
}