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": "49668399",
"endAt": "2001-12-09T04:39:29.814458+00:00",
"marketName": "understand-leader-everyone-skin-still",
"readingType": "INTERVAL",
"registerId": "11661849",
"startAt": "2004-09-21T14:41:57.721840+00:00",
"supplyPointId": "11952620",
"timeGranularity": "FIVE_MIN",
"timezone": "begin-boy-those-always-dream"
}
Response
{
"data": {
"estimatedSupplyPointReadings": [
{
"intervalEnd": "2025-11-29T20:54:55.445350+00:00",
"intervalStart": "1993-10-27T22:00:54.378338+00:00",
"isEstimated": true,
"quality": "break-cold-drop-season-bill",
"value": "1.0"
}
]
}
}