Administrative

Change Password

curl https://apiplatform.intellicar.in/api/standard/changepassword \
  --header 'Content-Type: application/json' \
  --data '{"token": "<token>", "username": "<username>", "newpassword": "<newpassword>"}'
  • username can be any user that the caller has permission to manage.

  • Password requirements:

    • At least 6 characters

    • No whitespace

    • Must not contain username


List Vehicles

List vehicles that the user can access.

curl https://apiplatform.intellicar.in/api/standard/listvehicles \
  --header 'Content-Type: application/json' \
  --data '{"token": "<token>"}'

Response:

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

List Users

List users that the caller can access.

Response:


Vehicle Information

Get meta-information about a vehicle.

Response:


Bound Devices

Get the list of devices bound to a specific vehicle.

Response:

Last updated