Get current standby screen settings
Standby mode represents splash screen when device is inactive.
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- is_enabled booleanDefault value: falseIs feature enabled? 
- current_mode stringPossible values: [ single_camera,cameras_tour]Current mode of monitor standby setting 
- duration integerPossible values: [ 0,60,120,300,600,1800]Time in seconds before turning off the screen backlight 0 - never 
- modes object[]List of available modes 
{
  "is_enabled": true,
  "current_mode": "single_camera",
  "duration": 600,
  "modes": [
    {
      "name": "single_camera",
      "params": {
        "camera_id": 1
      }
    },
    {
      "name": "cameras_tour",
      "params": {
        "camera_ids": [
          2
        ],
        "timeout": 10
      }
    }
  ]
}
{
  "is_enabled": false,
  "current_mode": "single_camera",
  "duration": 0,
  "modes": [
    {
      "name": "cameras_tour",
      "params": {
        "camera_id": 1,
        "camera_ids": [
          2
        ],
        "timeout": 10
      }
    }
  ]
}
Please log in
- application/json
- Schema
- Example (from schema)
- Example
Schema
- error object- Describes the base error user might get code string- Possible values: [ - invalid_authentication,- permission_denied,- not_valid,- system_error]- Error code message string- Error message - data object- Did not pass validation parameters. Can be represented as an object, which can include field names, arrays, query parameters etc. param string- Describes the parameter that did not pass a validation 
{
  "error": {
    "code": "not_valid",
    "message": "Data validation error",
    "data": {
      "param": "must be an string"
    }
  }
}
{
  "error": {
    "code": "invalid_authentication",
    "message": "Log In"
  }
}
Loading...