LPR Webhook Object

An LPR (License Plate Recognition) webhook object contains the following fields:

AttributeTypeDescription
webhook_typeStringlpr
webhook_idStringThe unique identifier of the webhook.
org_idStringThe unique identifier of the organization.
created_atIntegerThe creation time of the webhook. Formatted as a Unix timestamp in seconds.
dataObjectThe data associated with the notification. See following attributes for sub-fields.
data.camera_idStringThe unique identifier of the camera that recognized the license plate.
data.createdIntegerThe detection time of the license plate. Formatted as a Unix timestamp in seconds.
data.license_plate_numberStringThe license plate number detected by the camera.
data.confidenceDoubleThe confidence that the detected license_plate_number is correct.
data.image_urlStringImage 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"
  }
}