Vehicle event
caution
The vehicle data inside items[]
is included in the response only when received. It is an optional value.
Request Info
- Protocol: HTTPS (Mandatory)
- Method: POST
Request Header
The request header includes the following values.
Key | Description | Type | (Sample) Value |
---|---|---|---|
Content-Type | Content Type | String | application/json; charset=utf-8 |
X-API-Version | Version of Fleet API | String | v1.0 |
X-Custom-Key | (Optional) Custom header registered by the user when registering the Webhook | String | My custom value |
Payload Schema
Key | Description | Type | Sample value |
---|---|---|---|
vin | Vehicle Identification Number | String | HMGSDV00000000001 |
vehicleId | Vehicle unique ID | String | e79049fb-e744-11ef-8dd9-f56aaa011ede |
itemsCount | Number of items | Integer | 3 |
items | Array of vehicle data | Object Array | |
items[].messageTime | Time when vehicle data was recorded (ISO 8601) | String | 2025-02-12T08:12:58.628000000Z |
items[].data | Vehicle data object | Object | |
items[].data.Vehicle.Ignition1 | Ignition - IG1 | ValueObject<String> | [ "OFF", "ON" ] |
items[].data.Vehicle.Ignition2 | Ignition - IG2 | ValueObject<String> | [ "OFF", "ON" ] |
items[].data.Vehicle.Ignition3 | Ignition - IG3 | ValueObject<String> | [ "OFF", "ON" ] |
items[].data.Vehicle.IgnitionAcc | Ignition - ACC | ValueObject<String> | [ "OFF", "ON" ] |
items[].data.Vehicle.DrivingReady | Ignition - ON | ValueObject<String> | [ "OFF", "ON" ] |
items[].data.Door.Open.Driver | Door Open/Close Status - Driver | ValueObject<String> | [ "CLOSE", "OPEN" ] |
items[].data.Door.Lock.Driver | Door Lock Status - Driver | ValueObject<String> | [ "LOCK", "UNLOCK" ] |
items[].data.Hood.Open | Hood Open/Close Status | ValueObject<String> | [ "CLOSE", "OPEN" ] |
items[].data.Trunk.Open | Trunk open status | ValueObject<String> | [ "CLOSE", "OPEN" ] |
items[].data.ChargePort.Plug | Charger connection status | ValueObject<String> | [ "PLUG", "UNPLUG" ] |
items[].data.Emergency.Crash | Crash status | ValueObject<String> | [ "CRASH", "UNCRASH" ] |
items[].data.Seat.Buckle.Driver | Driver seatbelt status | ValueObject<String> | [ "BUCKLE", "UNBUCKLE" ] |
items[].data.Seat.Buckle.Passenger | Passenger seatbelt status | ValueObject<String> | [ "BUCKLE", "UNBUCKLE" ] |
items[].data.ParkingBrake.Engage | Parking brake | ValueObject<String> | [ "DISENGAGE", "ENGAGE" ] |
items[].data.WarningLamp.Airbag | Airbag Warning Light | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.EBD | EBD Warning Light | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.ABS | ABS Warning Light | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.EPS | EPS Warning Light | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.ChargingSystem | Charging system warning lamp | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.TirePressure.FrontLeft | Tire pressure - Front left | ValueObject<String> | [ "LOW", "NORMAL" ] |
items[].data.WarningLamp.TirePressure.FrontRight | Tire pressure - Front right | ValueObject<String> | [ "LOW", "NORMAL" ] |
items[].data.WarningLamp.TirePressure.RearLeft | Tire pressure - Rear left | ValueObject<String> | [ "LOW", "NORMAL" ] |
items[].data.WarningLamp.TirePressure.RearRight | Tire pressure - Rear right | ValueObject<String> | [ "LOW", "NORMAL" ] |
items[].data.WarningLamp.HeadLamp | LED headlamp warning lamp | ValueObject<String> | [ "DEFECT", "NORMAL" ] |
items[].data.WarningLamp.EPB | EPB warning lamp | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.ESC | ESC warning lamp | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.RegenerativeBrake | Regenerative braking warning lamp | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.TractionBatterySOC | Traction battery low voltage warning lamp | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.EVPowerDown | Power down warning lamp | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.EVService | EV service warning lamp | ValueObject<String> | [ "BLINK", "OFF", "ON" ] |
items[].data.WarningLamp.WasherFluid | Washer fluid low warning lamp | ValueObject<String> | [ "LOW", "NORMAL" ] |
items[].data.WarningLamp.BrakeOil | Brake fluid warning lamp | ValueObject<String> | [ "LOW", "NORMAL" ] |
items[].data.WarningLamp.AuxiliaryBatterySOC | 12V battery low | ValueObject<String> | [ "LOW", "NORMAL" ] |
Payload examples
Payload example 1
{
"vin": "HMGSDV00000000001",
"vehicleId": "e79049fb-e744-11ef-8dd9-f56aaa011ede",
"itemsCount": 3,
"items": [
{
"messageTime": "2025-02-12T08:12:58.628000000Z",
"data": {
"Vehicle": {
"Seat": {
"Buckle": {
"Driver": {
"value": false,
"eventTime": "2025-01-31T01:17:40.702000000Z"
}
}
}
}
}
}
]
}