octoHeatPumpControllersAtLocation
Heat pump controllers attached to an account at a given location.
Deprecation
The 'octoHeatPumpControllersAtLocation' field is deprecated.This query has been migrated to Octopus Energy backend. Please see https://api.backend.octopus.energy/v1/graphql.
- Marked as deprecated on 2026-03-18.
- Scheduled for removal on or after 2026-04-30.
Returns
[ControllerAtLocation]Possible Errors
Allowed Viewers
Query 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 OctoHeatPumpControllersAtLocation(
$accountNumber: String!,
$propertyId: ID!
) {
octoHeatPumpControllersAtLocation(
accountNumber: $accountNumber,
propertyId: $propertyId
) {
controller {
...ControllerFragment
}
heatPumpModel
location {
...LocationFragment
}
provisionedAt
}
}
Variables
{
"accountNumber": "A-781B53CD",
"propertyId": "62290352"
}
Response
{
"data": {
"octoHeatPumpControllersAtLocation": [
{
"controller": Controller,
"heatPumpModel": "deep-resource-form-order-travel",
"location": Location,
"provisionedAt": "2026-04-07T17:39:01.952543+00:00"
}
]
}
}