Vehicle Types describe the types of Vehicles.
Supported Vehicle Types are available via the following API request:
GET /api/beta/vehicle-types
Example response:
{
"vehicle_types": [
{
"key": "car-basic",
"description": "Basic car"
},
{
"key": "car-chauffeur",
"description": "Luxury car with chauffeur"
}
]
}
vehicle_types
- (array) List of supported vehicle typesvehicle_types[].key
- (string) The Vehicle Type key that should be used in other APIsvehicle_types[].description
- (string) Short human readable description of the Vehicle TypeIt is recommended that your application periodically refresh any local caches of this information from this API, to ensure you are working with the most up-to-date data.