Vehicle
Create new vehicle data
POST/vehicles/
Get all vehicle data
GET/vehicles/
Get vehicle data by country code and license plate number
GET/vehicles/{countryCode}/{plateNumber}/
Update vehicle data by country code and license plate number
PUT/vehicles/{countryCode}/{plateNumber}/
Delete specific vehicle data by country code and license plate number
DELETE/vehicles/{countryCode}/{plateNumber}/
Get details about the geolocation of vehicle by country code and license plate number
GET/vehicles/{countryCode}/{plateNumber}/geolocations/
Append new vehicle's geolocation data by country code and license plate number
PATCH/vehicles/{countryCode}/{plateNumber}/geolocations/
Get details about the owner of vehicle by country code and license plate number
GET/vehicles/{countryCode}/{plateNumber}/owners/
Get details about the insurances of vehicle by country code and license plate number
GET/vehicles/{countryCode}/{plateNumber}/insurances/
Get details about the insurance of vehicle by country code, license plate number and insurance id
GET/vehicles/{countryCode}/{plateNumber}/insurances/{insuranceId}/
Get details about the revisions of vehicle by country code and license plate number
GET/vehicles/{countryCode}/{plateNumber}/revisions/
Get details about the revision of vehicle by country code, license plate number and revision id
GET/vehicles/{countryCode}/{plateNumber}/revisions/{revisionId}/