v1
latestOpenAPI 3.0.32026-07-24214879985.1 KBLPR Vehicle Lists
Adds multiple vehicle records to the list in a single operation. This method enforces strictness about the uniqueness of vehicle license plates. Each plate/vehicle must be unique within the list, and duplicate entries in either the request or with existing records will result in an error.
post/lprVehicleLists/{id}/vehicles:bulkCreate
Path parameters
idstring required
Account ID. Use self as the Account ID to reference the account of the current session
Request body
Example request
[
{
"validFrom": "2022-01-24",
"validTo": "2022-02-25",
"securityStatus": "exempted",
"userData": {
"owner": "John Doe",
"apartmentNum": "105A"
},
"userTags": [
"105A",
"Jhon"
],
"color": "white",
"model": "camry",
"make": "volvo",
"plate": "ABC123"
}
]Response
Successful creation of new vehicle record
Example response
[
{
"status": 201,
"plate": "ABC456"
}
]