Add cars

        Add cars to the fleet. 
        Maximum 500 cars can be added in a single request.
        It returns only the errors, if any.
        It returns HTTP 200 when car already exists.
        
Securityjwt
Request
Request Body schema: application/json

List of cars to add as array of objects where each object contains a licenseNumber key with a string value.

Array
licenseNumber
string
Responses
default

List of failed license numbers with error messages

post/fleets/default/cars
Request samples
application/json
[
  • {
    • "licenseNumber": "string"
    }
]