Skip to main content
POST
/
api
/
system
/
mode
Set system mode
curl --request POST \
  --url http://aris.local/api/system/mode \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "mode": "auto"
}'
{
  "success": true,
  "mode": "auto"
}

Authorizations

Authorization
string
header
required

Session token or API token

Body

application/json
mode
enum<string>
required
Available options:
heat,
cool,
auto,
off
Example:

"auto"

Response

Mode set successfully

success
boolean
Example:

true

mode
enum<string>
Available options:
heat,
cool,
auto,
off
Example:

"auto"