Delete Specific Sensor API
Require Authentication
This API is used to delete specific sensor for the company based on combination of deviceID and token.
When deleting sensor, it will also delete all sensor allocation history and sensor data from those sensor allocation history, and asset that uses this sensor will not have any sensor allocated.
URL
api/sensors/delete/:sensorsID
Required parameter (in URL)
- :sensorsID «contains sensorsID that will be deleted. It must be put in the URL, e.g: api/sensors/delete/2»
Required parameter (POST)
- deviceID
- token
Optional parameter
Example JSON Payload
{ "deviceID": "ABCD-EFGH-IJKL-MNOP", "token": "bb602ab13b8090268cd6e3bb9dfa39e2" }
Possible return HTTP status code
- 200
- 400
- 401
- 404
- 405
Return message
{ "status": "success", "message": ["Sensor \"Sensor API edit\" and its related data have been deleted. Asset that uses this sensor now do not have any sensor allocated."] }