Camera Events Webhook Object

A camera event webhook object contains the following fields:

AttributeTypeDescription
webhook_typeStringnotification
webhook_idStringVerkada defined Id for notification webhook
org_idStringOrganization Id from which webhook is created.
created_atIntegerTime at which webhook was created. Measured in seconds since the Unix epoch.
dataObjectThe data associated with the notification. Check response of Alerts.

The following events are included as part of this webhook model -

  • Camera online
  • Camera offline
  • Tamper
  • People and Vehicle Detections
  • Crowd
  • Person of Interest
  • License Plate of Interest
  • Line Crossing
  • Loitering

Sample Notification Webhook Object:

{
    "org_id": "1455hjew-ghg5-4125-a1a7-954ea4e911fe",
    "webhook_type": "notification",
    "created_at": 1597685622,
    "webhook_id": "2fd2826d-4645-47ac-b0e6-a4b2ae634480",
    "data": {
        "camera_id": "123456-eade-7890-8ee5-aaf22d01d91a",
        "objects": "[]",
        "video_url": "https://command.verkada.com/cameras/89376792-eade-4506-8ee5-a67788231d91a/history/86400/1597685580/?duration=86400&initialVideoTime=1597685580000",
        "notification_type": "motion",
        "image_url": null,
        "crowd_threshold": null,
        "created": 1597685580,
        "person_label": null
    }
}