getEnergyIqData
Get energy IQ data for a specific account. It can either be the current record for energy IQ score or a score estimation including ev/heatpump/solar.
Deprecation
The 'getEnergyIqData' field is deprecated.The energy IQ data feature is no longer supported.
- Marked as deprecated on 2026-06-05.
- Scheduled for removal on or after 2026-07-01.
Arguments
The number of the account to get energy IQ data for.
Should the energy IQ estimation data include EV.
Should the energy IQ estimation data include heatpump.
Should the energy IQ estimation data include solar.
Is the query for the current energy IQ record? If true no 'include' parameters may be provided.
Returns
EnergyIqDataTypePossible Errors
Allowed Viewers
Query Complexity
6Examples
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 GetEnergyIqData(
$accountNumber: String!,
$includeEv: Boolean,
$includeHeatpump: Boolean,
$includeSolar: Boolean,
$isCurrentRecord: Boolean
) {
getEnergyIqData(
accountNumber: $accountNumber,
includeEv: $includeEv,
includeHeatpump: $includeHeatpump,
includeSolar: $includeSolar,
isCurrentRecord: $isCurrentRecord
) {
canAddHeatpump
canAddSolar
currentBill
elecCarRate
enqScore
hasEv
hasHeatpump
hasSolar
isCurrentRecord
newBill
}
}
Variables
{
"accountNumber": "A-D3E3B6C1",
"includeEv": true,
"includeHeatpump": true,
"includeSolar": true,
"isCurrentRecord": true
}
Response
{
"data": {
"getEnergyIqData": {
"canAddHeatpump": true,
"canAddSolar": true,
"currentBill": 914.3,
"elecCarRate": 435.57,
"enqScore": 87,
"hasEv": true,
"hasHeatpump": true,
"hasSolar": true,
"isCurrentRecord": true,
"newBill": 375.69
}
}
}