Factsheet

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 IdMeaningFurther Info
chsssIdThis data stands for the chassis number of the vehicle.

Chassis number is sometimes called Vehicle Identification Number (VIN).
insrncStatusThis 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.
insrncDetailThis data is only present when the value of insrncStatus is 0.

This data stands for a list of the insurances of the vehicle.
insrncDetail.#.typeThis data stands for the type of the insurance.
insrncDetail.#.idThis data stands for the id of the insurance.
insrncDetail.#.cmmncmDateThis data stands for the day the insurance was bought.
insrncDetail.#.expiryDateThis data stands for the day the insurance would expire.