Systeminfo

<< Click to Display Table of Contents >>

Navigation:  The API > JSON API > REST Resources > System >

Systeminfo

Overview

 

Get version of gateway with EnOcean base information

 

Client to Gateway:

Resource Path

HTTP method

/system/info

GET

no additional call parameters are necessary

 

response Gateway to Client:

parameter

datatype

value / formatting

description

header

object

{}

 

systemInfo

object

{}

 

 

coreVersion

string

 

contains the current firmware version, date and time of DC-GW/EO-IP

 

baseId

string

4 byte hex value

current BaseID of DC-GW/EO-IP

 

possibleBaseIdChanges

integer

number (10..0)

remaining number of BaseID changes (maximum 10 times, according to specifications of the chip)

 

eurid

string

4 byte hex value

eurid of the built-in EnOcean Chipset

 

example:

Basic structure of gateway response:

http://hostname:api_port/system/info

 

{
  "header" : {
    "httpStatus" : 200,
    "content" : "systemInfo",
    "gateway" : "DC-GW/EO-IP v0.99.1",
    "timestamp" : "2016-05-10T09:38:51.679+0200"
  },
  "systemInfo" : {
    "coreVersion" : "DC-GW/EO-IP v0.99.0b 2016.05.06 17:47",
    "baseId" : "FFA9FF00",
    "possibleBaseIdChanges" : 10,
    "eurid" : "018553FE"
  }
}