5.1.1 api system info

The /api/system/info function provides basic information on the device: type, serial number, firmware version, etc. The function is available in all device types regardless of the set access rights.

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 following information on the device:

Parameter

Description

devType

Internal device identifier

variant

Model name (version)

variantId

Internal numerical identifier of the product

customerId

Internal numerical identifier

serialNumber

Serial number

macAddr

Network identifier of the device

hwVersion

Hardware version

swVersion

Firmware version

buildType

Firmware build type (alpha, beta, or empty value for official versions)

firmwarePackage

FW package indication

deviceName

Device name set in the configuration interface on the Services / Web Server tab

Caution

  • For versions 2.33.2 and higher, the "buildType" key value range is changed; the value will include the "release" string for the official version. For versions 2.32.1 and lower, the "buildType" value range is empty for the official version.

Example:

GET /api/system/info 
{
  "success" : true,
  "result" : {
    "devType" : "2-14-0-0",
    "variant" : "2N IP Verso",
    "variantId" : 14,
    "customerId" : 0,
    "serialNumber" : "00-0000-0005",
    "macAddr" : "FC-1E-B3-00-00-05",
    "hwVersion" : "570v1",
    "swVersion" : "2.35.0.45.0",
    "buildType" : "dev",
    "firmwarePackage" : "verso",
    "deviceName" : "2N IP Verso"
  }
}