An LPR (License Plate Recognition) webhook object contains the following fields:
Attribute | Type | Description |
---|---|---|
webhook_type | String | lpr |
webhook_id | String | The unique identifier of the webhook. |
org_id | String | The unique identifier of the organization. |
created_at | Integer | The creation time of the webhook. Formatted as a Unix timestamp in seconds. |
data | Object | The data associated with the notification. See following attributes for sub-fields. |
data.camera_id | String | The unique identifier of the camera that recognized the license plate. |
data.created | Integer | The detection time of the license plate. Formatted as a Unix timestamp in seconds. |
data.license_plate_number | String | The license plate number detected by the camera. |
data.confidence | Double | The confidence that the detected license_plate_number is correct. |
data.image_url | String | Image URL for detected license plate. |
Sample Notification Webhook Object
{
"org_id": "8b0f904a-998c-4cef-a664-630846dfc68e",
"webhook_type": "lpr",
"created_at": 1742259179,
"webhook_id": "afa8082c-2cd6-431d-b0f8-e9ea3c5aa563",
"data": {
"camera_id": "b018c3c4-f1e9-424e-b911-c09c5fdab0b7",
"created": 1742259177,
"detected": 1742259179426,
"license_plate_number": "ABC123",
"confidence": 0.9558042857142857,
"crop": [
0.9553524851799011,
0.991522490978241,
0.11374980956315994,
0.15500019490718842
],
"image_url": "IMAGE_URL"
}
}