Superfy Platform API Documentation


Get Sensor Allocation History API

Require Authentication

This API is used to get sensor allocation history from specific sensor for the company based on combination of deviceID and token.


URL

api/sensors/history/:sensorsID

Required parameter (in URL)

Required parameter (POST)

Optional parameter (GET)

All optional parameters use GET method. So it should be embedded in the URL, e.g: api/sensors/history?q=bin&o=allocationDate

Example JSON Payload

{
	"deviceID": "ABCD-EFGH-IJKL-MNOP",
	"token": "bb602ab13b8090268cd6e3bb9dfa39e2"
}

Possible return HTTP status code

Return message

{
  "status": "success",
  "message": {
    "current_parameter": "?offset=0",
    "next_parameter": "?offset=0",
    "previous_parameter": "?offset=0",
    "start": 0,
    "total": 3,
    "lists": [{
      "sensorallocatedID": 1,
      "sensorsID": 1,
      "projectpinID": 9,
      "name": "test pin type API a",
      "iconURL": "http://localhost/sswebdash/assets/images/icons/pins/appsize/32.png",
      "latitude": -6.201930522919,
      "longitude": 106.7802658081,
      "allocationDate": 1462817660,
      "depthWhenEmpty_cm": 0,
      "distanceSensorToFillLine_cm": 0,
      "endDate": 1463424935,
      "companyID": 1
    }, {
      "sensorallocatedID": 2,
      "sensorsID": 1,
      "projectpinID": 9,
      "name": "test pin type API a",
      "iconURL": "http://localhost/sswebdash/assets/images/icons/pins/appsize/32.png",
      "latitude": -6.201930522919,
      "longitude": 106.7802658081,
      "allocationDate": 1463479639,
      "depthWhenEmpty_cm": 100,
      "distanceSensorToFillLine_cm": 10,
      "endDate": 1463479772,
      "companyID": 1
    }, {
      "sensorallocatedID": 3,
      "sensorsID": 1,
      "projectpinID": 9,
      "name": "test pin type API a",
      "iconURL": "http://localhost/sswebdash/assets/images/icons/pins/appsize/32.png",
      "latitude": -6.201930522919,
      "longitude": 106.7802658081,
      "allocationDate": 1463479783,
      "depthWhenEmpty_cm": 100,
      "distanceSensorToFillLine_cm": 10,
      "endDate": 0,
      "companyID": 1
    }]
  }
}

Note: use "next_parameter" and "previous_parameter" to go to next or previous result page. Just combine it with the API URL, e.g: "api/sensors/history"+next_parameter or "api/sensors/history"+previous_parameter
If "endDate" is 0, it means that the sensor is allocated to that bin.