BLE Tag History

Retrieve up to 7 days of device-supported BleTag history data.

Example Request:

curl https://apiplatform.intellicar.in/api/standard/getbletagshistory \
  --header 'Content-Type: application/json' \
  --data '{
    "token": "<token>",
    "vehicleno": "<vehicleno>",
    "starttime": "<epoch>",
    "endtime": "<epoch>"
  }'

Response:

{
  "status": "SUCCESS|FAILURE",
  "data": [
    {
      "time": "epoch-utc",
      "hall1_detected1": "<val>",
      "hall2_detected1": "<val>",
      "humi1": "<val>",
      "lux1": "<val>",
      "mov_detected1": "<val>",
      "temp1": "<val>"
    }
  ],
  "err": "<err>",
  "msg": "<msg>"
}

Last updated