Update multiple vehicles in the system.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
500Required for identification. Two-letter state code of the vehicle to update. Cannot be modified.
2Required for identification. License plate number of the vehicle to update. Cannot be modified.
1 - 15Vehicle manufacturer name.
Vehicle model name.
Manufacturing year (1000 to current year + 100). Numeric digits only.
VIN or custom vehicle identifier (max 20 characters, any format allowed).
20Custom tracking identifier.
Name of the person or entity leasing/renting the vehicle.
Custom fields specific to your fleet configuration.
Vehicle status.
[
{
"vehicle_make": "Toyota",
"vehicle_model": "Corolla",
"year": "2021",
"plate_number": "UPDATE001",
"plate_state": "NY",
"tracking_code": "TRACK001",
"lessee_renter": "",
"custom_fields": { "cost_center": "Cost Center 22" },
"active": true
},
{
"vehicle_make": "Toyota",
"vehicle_model": "Corolla",
"year": "2023",
"plate_number": "UPDATE002",
"plate_state": "NY",
"tracking_code": "TRACK002",
"lessee_renter": "",
"custom_fields": { "cost_center": "Cost Center 111" },
"active": true
},
{
"vehicle_make": "Toyota",
"vehicle_model": "Corolla",
"year": "2021",
"plate_number": "UPDATE003",
"plate_state": "NY",
"tracking_code": "TRACK003",
"lessee_renter": "",
"active": true
}
]OK