Heating profiles
Create heating profile
POST /schedule-profileContent-Type: application/json
Authorization: Bearer {access_token}{
"name":"Eco +",
"building_id":20, //optional /OR - "floor_id" OR - "space_id" OR "room_id"
"is_default": 1, // optional
"editable": 1, // optional
"boost_time": 120, // in minutes, optional
"schedules":[ // optional
{
"days" : "1111111",
"active": 1,
"from_time": 895,
"to_time": 920,
"device_hours": 14,
"action": "command",
"target": 24
},{
"days" : "1111111",
"active": 1,
"from_time": 920,
"to_time": 1000,
"device_hours": 14,
"action": "command",
"target": 24
}
]
}Assign devices
Create Schedule
Fetch All Schedule profiles
Fetch Schedule
Update Schedule profile
Delete Schedule profile
Delete device from Schedule profile
Last updated