electricitySupplyPoint
Get information about a supply point by ID.
Arguments
The ID of the supply point to obtain information for.
Returns
ElectricitySupplyPointTypeExamples
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": "13659117"
}
Response
{
"data": {
"electricitySupplyPoint": {
"address": AddressType,
"agreements": AgreementConnectionTypeConnection,
"cancellationReason": "CUSTOMER_CHANGED_MIND",
"distributorPhoneNumber": "action-work-far-others-last",
"enrolmentStartDate": "1987-10-10",
"enrolmentStatus": "SWITCH_REQUEST_RECEIVED",
"id": "18450991",
"isSmartMeter": true,
"pod": "ask-fish-own-lay-economic",
"product": ElectricityProductType,
"status": "size-sing-through-test-light",
"supplyStartDate": "1990-03-10"
}
}
}