GET
/
entities
/
:ent_id
/
vehicles
/
:evhl_id
curl https://production.methodfi.com/entities/ent_au22b1fbFJbp8/vehicles/evhl_knqJgxKUnqDVJ \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "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"
}

Retrieves a Vehicle record for an Entity.

Path Parameters

ent_id
string

The ID of the entity.

evhl_id
string

The ID of the Vehicle.

Returns

Returns an Entity’s Vehicle object.

curl https://production.methodfi.com/entities/ent_au22b1fbFJbp8/vehicles/evhl_knqJgxKUnqDVJ \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "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"
}