Module
info.json
GET api/module/status/info.json
Response data:
Name  | Data Type  | Description  | 
|---|---|---|
modulename  | String  | -  | 
serial  | String  | 32 bit hex ASCII  | 
fwver  | Array of Number  | (major, minor, build)  | 
uptime  | Array of Number  | The uptime is implemented as an array of two 32 bit values: [high, low] milliseconds (ms)  | 
cpuload  | Number  | CPU load in %  | 
fwvertext  | String  | Firmware version in text  | 
vendorname  | String  | Vendor name (Application Object (FFh), instance attribute #8)  | 
hwvertext  | String  | Hardware version in text  | 
networktype  | Number  | Network type (Network Object (03h), instance attribute #1)  | 
JSON response example:
{
   "modulename":  "ABCC M40",
   "serial":      "ABCDEF00",
   "fwver":       [ 1, 5, 0 ],
   "uptime":      [ 5, 123456 ],
   "cpuload":     55,
   "fwvertext":   "1.05.02",
   "vendorname":  "HMS Industrial Networks",
   "hwvertext":   "2",
   "networktype": 133,
}