electricitySupplyPoint
Get information about a supply point by ID.
Arguments
The ID of the supply point to obtain information for.
Returns
ElectricitySupplyPointTypePossible Errors
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 ElectricitySupplyPoint($id: ID!) {
electricitySupplyPoint(id: $id) {
address {
...AddressTypeFragment
}
agreements {
...AgreementConnectionTypeConnectionFragment
}
cancellationReason
distributorPhoneNumber
enrolmentStartDate
enrolmentStatus
id
isSmartMeter
pod
product {
...ElectricityProductTypeFragment
}
status
supplyStartDate
}
}
Variables
{
"id": "86036550"
}
Response
{
"data": {
"electricitySupplyPoint": {
"address": AddressType,
"agreements": AgreementConnectionTypeConnection,
"cancellationReason": "CUSTOMER_CHANGED_MIND",
"distributorPhoneNumber": "care-state-actually-a-Democrat",
"enrolmentStartDate": "1982-07-28",
"enrolmentStatus": "SWITCH_REQUEST_RECEIVED",
"id": "68917812",
"isSmartMeter": true,
"pod": "benefit-job-near-might-left",
"product": ElectricityProductType,
"status": "school-program-southern-of-court",
"supplyStartDate": "2025-08-06"
}
}
}