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.

The vehicle object

Attributes
  • objectstring

    Type of the object, always "Vehicle".

  • idstring

    Unique identifier for the vehicle.

  • groupstring

    Primary or Third Party 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.

  • 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.

  • string or null

    URL to the brand logo.

  • Date when the vehicle was created.

  • Date when the vehicle information was last updated.

Vehicle
interface Vehicle {
  object: "Vehicle";
  body_type: "car" | "motorcycle" | "other";
  id: string;
  group: "primary-vehicle" | "third-party-vehicle";
  driver_id: string;
  owner_id: string;
  account_contact_id: string;
  secondary_account_contact_ids: string[];
  passenger_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;
}
Example Vehicle
{
  "object": "Vehicle",
  "body_type": "car",
  "id": "NAGZ6rbLqgzR0V9d",
  "group": "primary-vehicle",
  "driver_id": "NAGZ6rbLqgzR0V9d",
  "owner_id": "NAGZ6rbLqgzR0V9d",
  "account_contact_id": "NAGZ6rbLqgzR0V9d",
  "secondary_account_contact_ids": [
    "NAGZ6rbLqgzR0V9d"
  ],
  "passenger_ids": [
    "NAGZ6rbLqgzR0V9d"
  ],
  "vin": "VF3BA2150C0011909",
  "license_plate": "SHZ7190",
  "make": "Peugeot",
  "model": "3008",
  "year": "2014",
  "color": "BROWN",
  "plate_state": null,
  "drive_train": "FWD",
  "fuel_type": "petrol",
  "trim_level": null,
  "dashcam_footage": true,
  "created_at": "2023-12-19T09:08:25.000000Z",
  "updated_at": "2023-12-19T09:08:25.000000Z"
}