Skip to main content

Arguments

deviceId : ID

Optional meter device identifier to filter readings.

endAt : DateTime! required

The end of the requested period (exclusive, timezone-aware).

marketName : String! required

The market this supply point belongs to.

readingType : ReadingTypes! required

The reading type to estimate. PEAK is not supported.

registerId : ID

Optional register identifier to filter readings.

startAt : DateTime! required

The start of the requested period (inclusive, timezone-aware).

supplyPointId : String! required

The market-level external identifier of the supply point (e.g. ICP number).

timeGranularity : TimeGranularities! required

The time granularity for aggregating readings.

timezone : String! required

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.

Allowed Viewers

Customer Partner User Third party

Required Permissions

Can estimate meter readings

Query Complexity

3

Examples

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

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" } ] } }