Get management server settings
deprecated
This endpoint has been deprecated and may be removed in future versions of the API.
Get management server settings.
If Link is enabled - Link will sync identifiers, access rules, logs etc.
If realtime logging is enabled - panel will send the logs in realtime to the Link.
If heartbeat is enabled - panel will send keep alive to the Link every 10 seconds.
This endpoint is deprecated, use GET /network/management/server
Responses
- 200
 - 401
 
OK
- application/json
 
- Schema
 - Example (from schema)
 - Example
 
Schema
- link_enable boolean
Default value:
falseIf management server is enabled
 - link_password string
Link server authorization password
 - realtime_logging boolean
Default value:
trueIf enabled device will send logs to the server
 - heartbeat boolean
If enabled device will send keep alive request every 10 seconds
 
{
  "link_enable": false,
  "link_password": "123abc",
  "realtime_logging": true,
  "heartbeat": true
}
{
  "link_enable": false,
  "link_password": "123abc",
  "realtime_logging": true,
  "heartbeat": true
}
Unauthorized
- application/json
 
- Schema
 - Example (from schema)
 - Example
 
Schema
- error string
Error message
 
{
  "error": "Log In"
}
{
  "error": "Log In"
}
Loading...