{
  "id": "evhl_knqJgxKUnqDVJ",
  "entity_id": "ent_zR3nJG3c99P3X",
  "vehicles": [
    {
      "vin": "2G1125S36F9220155",
      "year": "2015",
      "make": "chevrolet",
      "model": "impala",
      "series": null,
      "major_color": "black",
      "style": "sedan/saloon"
    },
    {
      "vin": "JN8AZ2NF0C9518827",
      "year": "2012",
      "make": "infiniti",
      "model": "qx56",
      "series": null,
      "major_color": "black",
      "style": "sport_utility_vehicle"
    },
  ],
  "status": "completed",
  "error": null,
  "updated_at": "2024-08-01T16:08:25.462Z",
  "created_at": "2024-08-01T16:08:25.462Z"
}

The Vehicles endpoint provides the vehicles for an Entity.

The Vehicles endpoint is available as a:

TypeUse-Case
ProductOn-Demand view of an Entity’s vehicles.

Vehicle Objects

id
string

Unique identifier for the Vehicle.

entity_id
string

The ID of the associated Entity.

vehicles
object[]

An array of vehicle objects.

status
enum

Status of the Vehicle.

error
object | null

An object representing an error that occurred while processing this Vehicle. See Vehicle errors.

created_at
string

Timestamp of when the Vehicle was created.

updated_at
string

Timestamp of when the Vehicle was last updated.

{
  "id": "evhl_knqJgxKUnqDVJ",
  "entity_id": "ent_zR3nJG3c99P3X",
  "vehicles": [
    {
      "vin": "2G1125S36F9220155",
      "year": "2015",
      "make": "chevrolet",
      "model": "impala",
      "series": null,
      "major_color": "black",
      "style": "sedan/saloon"
    },
    {
      "vin": "JN8AZ2NF0C9518827",
      "year": "2012",
      "make": "infiniti",
      "model": "qx56",
      "series": null,
      "major_color": "black",
      "style": "sport_utility_vehicle"
    },
  ],
  "status": "completed",
  "error": null,
  "updated_at": "2024-08-01T16:08:25.462Z",
  "created_at": "2024-08-01T16:08:25.462Z"
}