GET
/
v1.0.0
/
hvacs
/
{hvacId}
/
schedules
curl --request GET \
  --url https://api.energy-hub.io/v1.0.0/hvacs/{hvacId}/schedules \
  --header 'X-API-KEY: <api-key>'
{
  "schedules": [
    {
      "mode": "HEAT",
      "start": {
        "time": "00:00",
        "day": "MONDAY"
      },
      "temperature": 21.1,
      "end": {
        "time": "00:00",
        "day": "MONDAY"
      }
    }
  ],
  "timeZone": "Europe/Berlin"
}

Authorizations

X-API-KEY
string
header
required

API key used for authorization and authentication.

Path Parameters

hvacId
string
required

Hvac ID

Response

200
application/json
Successful operation

Response object of the schedules for each day of the week.

schedules
object[]
required

The list of schedule events.

timeZone
string
required

The timezone of the schedule.