Skip to main content
Version: 1.1.1

U-Filter HTTP API

Sends a HTTP POST message to a given endpoint (configured in the HTTP webhook interface) with metadata of the filtered incident. Content type: application/json.

Event type in U-FilterEvent description in client"Caption contains" field
EVENTmotorcycle: 1, bicycle: 2, ...INTRUSION_EVENT
NEGATIVE_EVENTU-Filter: Negative eventINTRUSION_NEGATIVE
FIRST_OVERLOAD_COOLDOWNU-Filter: OverloadINTRUSION_OVERLOAD
ERRORU-Filter: ErrorERROR
INVALID_IMAGEU-Filter: Invalid imageERROR

Message schema

The content type of messages is application/json. The content is described in proto in this document.

{
"api_version": 1, // U-Filter API version for compatibility checking
"event_type": "INTRUSION", // will be extended in the future
"event_id": "5490f2c8-fa8d-4e80-a766-27bb8836bd80", // UUID, different for each notification
"account_name": "Elite Team Security",
"site_display_name": "My Site 1",
"site_technical_name": "my_site_1",
"camera_display_name": "Camera 1 ",
"camera_technical_name": "camera_1",
"camera_external_id": "Securithor_ID", // camera id on an external system
"geolocation": {
"lat": 2.3,
"lng": 0.0
}, // gps coordinates of the camera can be undefined
"message": "An intrusion is detected", // Text message for the operator, can be undefined
"detections": [{
"type": "CAR", // object type, can be PERSON, CAR, BUS, TRUCK, MOTORCYCLE, BICYCLE, TRAIN, BOAT, AIRPLANE
"position": {
"x": 231, //top-left point in the original resolution
"y": 135, //top-left point in the original resolution
"w": 20, //width in pixels
"h": 50 //height in pixels
}
}],
"timestamp": 1671024231000, // epoch time in milliseconds
"img_url": "data:image/jpeg;base64,/9j/4AAQS..." // can be null
"resolution": {
"w": 1920, //image width in pixels
"h": 1080 //image height in pixels
}
}