2.2.4.1 System Info and Status
As this is a WEB API function, the success value is not included in the response. Information on the system and its state is returned.
URL: | https://<IP>/api/v1/status |
HTTP method: | GET |
Request body: | N/A |
Response code: | Standard HTTP response code, treating syntactic errors. |
Response data: | {
"data": {
"device": {
"fwVersion": "4.2.0",
"hwVersion": 1,
"isNfcCapable": false,
"isWifiCapable": true,
"lanMac": "7C:1E:B3:02:FC:12",
"model": "2N Indoor Touch 2.0",
"os": "Android OS 6.0.1",
"sn": "52-2101-0129",
"temperature": 53,
"uptimeLife": 7898373,
"uptimeRestart": 763111,
"wifiMac": "7C:1E:B3:03:3F:6B"
},
"memory": {
"available": 1024,
"total": 1760
},
"sdCard": {
"available": 0,
"isInserted": false,
"total": 0
},
"storage": {
"available": 3393,
"total": 3712
},
"time": {
"date": "10/9/19",
"time": "9:42 AM"
}
}
}
|
Meaning of items:
- device
- fwVersion – device firmware version
- hwVersion – device hardware version
- isNfcCapable – true if NFC support is available
- isWifiCapable – true if a wi-fi interface is available
- lanMac – Ethernet interface MAC address
- model – device model
- os – operating system version
- sn – device serial number
- temperature – device temperature
- upTimeLife – gives the total device operation time
- upTimeRestart – gives the device operation time since the last restart
- wifiMac – wi-fi interface MAC address
- memory
- available – currently available device memory size
- total – total device memory size
- sdCard
- available – currently available SD card size
- isInserted – true if an SD card is inserted
- total – total external SD card size
- storage
- available – currently available device storage size
- total – total device storage size
- time
- date – current device date
- time – current device time
