Get management server settings
Get management server settings.
If Link is enabled - server will sync identifiers, access rules, logs etc.
If realtime logging is enabled - panel will send the logs in realtime to the server.
If heartbeat is enabled - panel will send keep alive to the server every 10 seconds. When MQTT protocol is used heartbeat is enabled by default.
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- Mqtt
- H T T P
Schema
- is_enabled booleanIf management server is enabled 
- protocol stringPossible values: [ http,mqtt]Server interaction protocol 
- settings object- Protocol settings anyOf- MOD1
- MOD2
 url ipv4 or dns- Server address password string- Server authorization password is_logging_enabled boolean- Panel will send logs to server if option is enabled is_encrypted boolean- If enabled you can provide custom certificate with - POST /network/management/settings/certificateor device will use default one.url ipv4 or dns- Server address password string- Server authorization password is_logging_enabled boolean- Panel will send logs to server if option is enabled is_heartbeat_enabled boolean- If enabled device will send keep alive request every 10 seconds 
{
  "is_enabled": true,
  "protocol": "mqtt",
  "settings": {
    "url": "link.bas-ip.com",
    "password": "123abc",
    "is_logging_enabled": false,
    "is_encrypted": false
  }
}
{
  "is_enabled": false,
  "protocol": "mqtt",
  "settings": {
    "url": "link.bas-ip.com",
    "password": "123abc",
    "is_logging_enabled": true,
    "is_encrypted": true
  }
}
{
  "is_enabled": false,
  "protocol": "http",
  "settings": {
    "url": "link.bas-ip.com",
    "password": "123abc",
    "is_logging_enabled": true,
    "is_heartbeat_enabled": true
  }
}
Unauthorized request. Log In
- application/json
- Schema
- Example (from schema)
- Log In
Schema
- error stringError message 
{
  "error": "Log In"
}
{
  "error": "Log In"
}