The Vehicles endpoint provides the vehicles for an Entity.
The Vehicles endpoint is available as a:
Type | Use-Case |
---|
Product | On-Demand view of an Entity’s vehicles. |
Vehicle Objects
Unique identifier for the Vehicle.
The ID of the associated Entity.
An array of vehicle objects.
Vehicle Identification Number.
Make year of the vehicle (e.g. `2021`).
Manufacturer, e.g. `honda`.
Model of the vehicle, e.g. `accord`.
Series/Trim/Category of the vehicle, e.g. `lx` or `ex`.
Major color of the vehicle, e.g. `black`.
Style of the vehicle, e.g. `crew_pickup`.
Status of the Vehicle.
pending
The request is queued to be processed.
completed
The request has successfully been processed.
failed
The request failed to be processed.
An object representing an error that occurred while processing this Vehicle. See Vehicle errors.
Timestamp of when the Vehicle was created.
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"
}