Summary
This API call obtains information about the Sentinel device
Description
This service obtains a series of JSON formatted information about the Sentinel. The information selections
available are as follows:
Returns
JSON information for the requested selection, an example for the instrument/information is as follows:
{
"HwType": "Sentinel",
"SerialNumber": "300285",
"HwCapabilities": []
}
An error in JSON format will be returned if the selection is not valid:
{
"result" : false,
"message" : "Not a valid subservice - information1"
}
In the above error
, instrument/information1
was requested rather than
instrument/information
.
Example
Browser
https://192.168.123.123/api/instrument/information
Curl
curl http://192.168.123.123/api/instrument/information
Version
API Call
/api/version
Summary
Get the version of the Sentinel firmware installed on the unit.
Description
Obtain the version of the firmware installed on Sentinel.
Parameters
Returns
JSON formatted information on the firmware installed on the Sentinel unit:
{ "firmware": "2.13.0.1.5569-20210302" }
Example
Browser
https://192.168.123.123/api/version
Curl