Bulk Lock and Unlock

Bulk Lock

Use the following curl command to lock multiple vehicles simultaneously by specifying their vehicle numbers:

curl https://apiplatform.intellicar.in/api/standard/lock \
  --header 'Content-Type: application/json' \
  --data '{
    "token": "<token>",
    "vehicleno": ["<vehicleno1>", "<vehicleno2>"]
  }

Response:

{
  "status": "SUCCESS|FAILURE",
  "data": {
    "UnlockCmndSentSuccess": [
      "<vehicleno>",
      "<vehicleno>"
    ],
    "

Response:

{
  "status": "SUCCESS|FAILURE",
  "data": {
    "LockCmndSentSuccess": [
      "<vehicleno>",
      "<vehicleno>"
    ],
    "LockCmndSentFailure": [
      "<vehicleno>"
    ]
  },
  "err": "<err>",
  "msg": "<msg>"
}

Bulk Unlock

Response:

Last updated