Skip to main content
POST
/
v1
/
device
/
thermal-control
/
settings
curl --request POST \
  --url https://api.nox.energy/v1/device/thermal-control/settings \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "user_id": "user456",
  "device_id": "device123",
  "room": {
    "temperature_lower_bound": 1.5,
    "temperature_upper_bound": 2,
    "preferred_temperature": 21,
    "schedule_enabled": true,
    "temperature_control_mode": "auto"
  },
  "dhw": {
    "temperature_lower_bound": 45,
    "temperature_upper_bound": 60
  },
  "steering_enabled": {
    "heat_pump": false
  },
  "location": {
    "country": "NL",
    "postal_code": "1234AB"
  }
}
'
{
  "status": "success",
  "message": "Settings updated successfully.",
  "meta": {
    "energy_supplier": "Energy Supplier A"
  }
}

Authorizations

x-api-key
string
header
required

API Key authentication. Enter your API key in the format: YOUR_API_KEY

Body

application/json
user_id
string
required

User ID to update settings for

device_id
string | null

Device ID to update settings for

room
RoomSettings · object

Room temperature control settings

dhw
DHWSettings · object

Domestic hot water settings

steering_enabled
SteeringEnabled · object

Steering control settings

location
LocationSettings · object

Location-related settings

Response

Successful response

The response is of type Response Submit Thermal Control Settings V1 Device Thermal Control Settings Post · object.