v1
latestOpenAPI 3.0.32026-07-24214879985.1 KBLPR Vehicle Lists
Adds a new vehicle record to the list. This method enforces strictness about the uniqueness of vehicle license plate, so the same plate/vehicle cannot be added more than once, and would result in error if attempted.
post/lprVehicleLists/{id}/vehicles
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
{
"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",
"id": "ABC123-20221014123567",
"createTimestamp": "2017-02-27T10:44:13.423Z",
"updateTimestamp": "2017-02-27T10:44:13.423Z"
}