Get Specific Sensor Setting API
Require Authentication
This API is used to get specific sensor settings registered by the company based on combination of deviceID and token.
URL
api/sensors/getspecificsettings
Required parameter (POST)
- deviceID
- token
- sensorsID «contains the sensorsID that will be configured.»
Optional parameter
Example JSON Payload
{
  "deviceID": "ABCD-EFGH-IJKL-MNOP",
  "token": "c43fa596e7916827106b591e2bb026cd",
  "sensorsID": 1
}
Possible return HTTP status code
- 200
- 401
- 405
Return message
{
  "status": "success",
  "message": {
    "sensorsID": 1,
    "heartbeatFrequency": 3600,
    "lastUpdate": 1464283980
  }
}
