Vehicle
The Vehicle resource provides comprehensive information regarding a vehicle involved in an incident. It encompasses details such as body type, VIN, license plate, make, model, year, color, plate state, drive train, fuel type, trim level, dashcam footage availability, and the last update timestamp. This resource plays a vital role in providing a detailed profile of the vehicles associated with the incident.
Events
The following events are available for vehicles:
| Event Type | Description |
|---|---|
vehicle.created | Triggered when a new vehicle is added to an incident |
vehicle.updated | Triggered when any vehicle information is modified |
vehicle.deleted | Triggered when a vehicle is removed from an incident |
The vehicle object
Attributes
- objectstring
Type of the object, always "Vehicle".
- idstring
Unique identifier for the vehicle.
- owner_idstring or null
Unique identifier of the registered vehicle owner contact.
- driver_idstring or null
Unique identifier of the driver contact.
- account_contact_idstring or null
Unique identifier of the primary account contact.
- secondary_account_contact_idsarray of strings
Unique identifiers of the secondary account contacts.
- passenger_idsarray of strings
Unique identifiers of the passenger contacts.
- vinstring or null
Vehicle identification number.
- license_platestring or null
Vehicle license plate.
- makestring or null
Vehicle make.
- modelstring or null
Vehicle model.
- yearnumber or null
Year of the vehicle.
- colorstring or null
Vehicle color.
- plate_statestring or null
State of the license plate. (Valid for U.S. market only)
- drive_trainstring or null
Vehicle drive train.
- fuel_typestring or null
Type of fuel the vehicle uses.
- trim_levelstring or null
Trim level of the vehicle.
- dashcam_footageboolean or null
Indicates whether the vehicle has dashcam footage.
- brand_logostring or null
URL to the brand logo.
- created_atDate
Date when the vehicle was created.
- updated_atDate
Date when the vehicle information was last updated.
interface Vehicle {
object: "Vehicle";
body_type: "car" | "motorcycle" | "other";
id: string;
owner_id: string;
account_contact_id: string;
secondary_account_contact_ids: string[];
vin: string | null;
license_plate: string | null;
make: string | null;
model: string | null;
year: number | null;
color: string | null;
plate_state: string | null;
drive_train: "AWD" | "FWD" | "RWD";
fuel_type: string | null;
trim_level: string | null;
dashcam_footage: boolean | null;
created_at: string;
updated_at: string;
}
