5.1.2 api system status

The /api/system/status function returns the current intercom status.

The function is part of the System service and the user must be assigned the System Control privilege for authentication if required.

The GET or POST method can be used for this function.

The function has no parameters.

The reply is in the application/json format and includes the current device status.

Parameter

Description

systemTime

Device real time in seconds since 00:00 1.1.1970 (unix time)

upTime

Device operation time since the last restart in seconds

Example:

GET /api/system/status
{
  "success" : true,
  "result" : {
    "systemTime" : 1418225091,
    "upTime" : 190524
  }
}