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": "17710709",
"endAt": "1981-06-14T22:22:59.999924+00:00",
"marketName": "second-break-well-speech-detail",
"readingType": "INTERVAL",
"registerId": "48401223",
"startAt": "2010-05-30T08:21:02.493998+00:00",
"supplyPointId": "80760648",
"timeGranularity": "FIVE_MIN",
"timezone": "institution-eat-allow-edge-crime"
}
Response
{
"data": {
"estimatedSupplyPointReadings": [
{
"intervalEnd": "1989-10-20T21:59:10.866285+00:00",
"intervalStart": "1995-09-16T15:08:10.862306+00:00",
"isEstimated": true,
"quality": "them-process-past-ten-hit",
"value": "1.0"
}
]
}
}