Skip to main content
GET
/
v0
/
business
/
{business_id}
/
vehicles
/
{vehicle_id}
Get a vehicle by ID
curl --request GET \
  --url https://api.sandbox.getasset.com/v0/business/{business_id}/vehicles/{vehicle_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "business_id": "<string>",
    "description": "<string>",
    "make": "Ford",
    "model": "F-150",
    "license_plate": "ABC-1234",
    "vin": "1FTEW1EP5KFA12345",
    "id": "<string>",
    "external_id": "1234567890",
    "year": 2019,
    "is_active": true
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

business_id
string<biz_string>
required
vehicle_id
string<vhc_string>
required

Response

Successful Response

data
VehiclePublic · object
required