octoHeatPumpSetZoneMode
Turn a specific heating controller zone ON/OFF, set it to AUTO mode, or give it a BOOST.
Deprecation
The 'octoHeatPumpSetZoneMode' field is deprecated.This mutation 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.
Arguments
The account number.
The EUID of the heat pump controller.
The parameters required to instruct a specific zone operation.
Returns
SetZoneModeTurn a specific heating controller zone ON/OFF, set it to AUTO mode, or give it a BOOST.
Possible Errors
Allowed Viewers
Rate Limits
| Key | Steps |
|---|---|
user |
['300/h'] |
Query Complexity
3Examples
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.
mutation OctoHeatPumpSetZoneMode(
$accountNumber: String!,
$euid: ID!,
$operationParameters: SetZoneModeParameters!
) {
octoHeatPumpSetZoneMode(
accountNumber: $accountNumber,
euid: $euid,
operationParameters: $operationParameters
) {
transactionId
}
}
Variables
{
"accountNumber": "A-D7AE479D",
"euid": "64626477",
"operationParameters": SetZoneModeParameters
}
Response
{
"data": {
"octoHeatPumpSetZoneMode": {
"transactionId": "94458120"
}
}
}