Vehicle Immobilise and Mobilize
These APIs let you immobilize or mobilize a vehicle through the platform.
Immobilize (Vehicle)
curl https://apiplatform.intellicar.in/api/standard/immobilize \
--header 'Content-Type: application/json' \
--data '{"vehicleno": "<vehicleno>", "type": "<ignition|crank|movement|can|charge|discharge|chargendischarge>", "token": "<token>", "immediate": <true|false>}'type: The mode of immobilization (ignition, charge, discharge, etc.).
immediate: Optional (default
false). Iftrue, the immobilization happens immediately (e.g. Flash device logic).
Response:
{
"status": "SUCCESS|FAILURE",
"data": "<type> Immobilize command sent for Vehicle <vehicleno>",
"err": "<err>",
"msg": "<msg>"
}Mobilize (Vehicle)
curl https://apiplatform.intellicar.in/api/standard/mobilize \
--header 'Content-Type: application/json' \
--data '{"vehicleno": "<vehicleno>", "type": "<ignition|crank|movement|can|charge|discharge|chargendischarge>", "token": "<token>"}'Response:
Last updated