Create multiple vehicles in the system.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
500Required. Two-letter state code (A-Z only, exactly 2 characters). Auto-formatted to uppercase.
2Required. License plate number (max 15 characters, letters and numbers only). Auto-formatted to uppercase with special characters removed. Must be unique when combined with plate_state.
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. Defaults to true if not specified.
[
{
"vehicle_make": "Toyota",
"vehicle_model": "Corolla",
"year": "2021",
"plate_number": "TESTCASE001",
"plate_state": "NJ",
"tracking_code": "TRACK001",
"lessee_renter": "",
"custom_fields": { "cost_center": "Cost Center 1" },
"active": true
},
{
"vehicle_make": "Toyota",
"vehicle_model": "Corolla",
"year": "2023",
"plate_number": "TESTCASE002",
"plate_state": "NJ",
"tracking_code": "TRACK002",
"lessee_renter": "",
"custom_fields": { "cost_center": "Cost Center 2" },
"active": true
},
{
"vehicle_make": "Toyota",
"vehicle_model": "Corolla",
"year": "2021",
"plate_number": "TESTCASE003",
"plate_state": "NJ",
"tracking_code": "TRACK003",
"lessee_renter": "",
"active": true
}
]Created