GET
/
api
/
vehicle
/
{ID}
/
GET
curl --request GET \
  --url https://api.app.fleetit.com/api/vehicle/{ID}/ \
  --header 'Authorization: Bearer <token>'
{
  "custom_fields": {},
  "history": {
    "date": "2024-01-29T15:00:06.997Z",
    "username": "System"
  },
  "id": 123,
  "lessee_renter": null,
  "plate_number": "ABC1234",
  "plate_state": "NY",
  "status": "REMOVED",
  "tracking_code": "Test",
  "vehicle_make": "Ford",
  "vehicle_model": "F150",
  "year": "2024"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

ID
string
required
Example:

""

Response

GET

custom_fields
object
history
object
id
number
Example:

123

lessee_renter
any
plate_number
string
Example:

"ABC1234"

plate_state
string
Example:

"NY"

status
string
Example:

"REMOVED"

tracking_code
string
Example:

"Test"

vehicle_make
string
Example:

"Ford"

vehicle_model
string
Example:

"F150"

year
string
Example:

"2024"