4.4: Vehicle insurance profile
A vehicle's insurance profile tell you the following:
- the vehicle's chassis id (also known as VIN);
- the vehicle's insurance status (whether a vehicle has one or more insurance or not); and
- the vehicle's insurances basic info (type, id, commencement/purchase date, and expiry date, of all active insurances).
To know get a vehicle's insurance profile, issue this command.
Command
dump vins_regId:{registration no}*I_PRFL
- registration no should be the registration no/plate no of the vehicle.
Example
dump vins_regId:aaa123bc*I_PRFL
{
"srvcVrsn": "2",
"userInfo": {
"id": "us0123456789abcdefghij0123456789",
"athrzt": {
"id": "id1234567890abcdefghij1234567890",
"key": "ky1234567890abcdefghij1234567890"
}
},
"cmmnd": {
"cmmnd": "dump vins_regId:aaa123bc*I_PRFL"
}
}
Response Sample
{
"exctnFdbck": {
"id": "75"
},
"chsssId": "wbadt11040gy45743",
"insrncStatus": "1",
"insrncDetail": [
{
"type": "third party",
"id": "abc/mn/1234/1234567/ooo",
"cmmncmDate": "2022-02-04",
"expiryDate": "2023-02-03"
}
]
}
Data Id | Meaning | Further Info |
---|---|---|
chsssId | This data stands for the chassis number of the vehicle. Chassis number is sometimes called Vehicle Identification Number (VIN). | |
insrncStatus | This data stands for the insurance status of the vehicle. This data tells whether a vehicle has one or more insurances or not. | Possible values: 0: Vehicle has no insurance; and 1: Vehicle has one or more insurance. |
insrncDetail | This data is only present when the value of insrncStatus is 0. This data stands for a list of the insurances of the vehicle. | |
insrncDetail.#.type | This data stands for the type of the insurance. | |
insrncDetail.#.id | This data stands for the id of the insurance. | |
insrncDetail.#.cmmncmDate | This data stands for the day the insurance was bought. | |
insrncDetail.#.expiryDate | This data stands for the day the insurance would expire. |
Updated about 2 years ago