v1
latestOpenAPI 3.0.32026-07-24214879985.1 KBEvent Alert Rules
Create a new rule that produces alerts based on certain conditions. Specifically, the user specifies alert conditions that indicate when the alert is produced based on following:
- Which resources can produce the alert
- What is the schedule for the alert.
- What event types can produce the alert.
Resellers may create rules on behalf of an end user account by setting endUserAccountId in the request body. The reseller must have permission to edit automations on that end user account.
post/eventAlertConditionRules
Request body
Example request
{
"name": "Alert on Motion detection",
"notes": "Generate alerts on Motion Detection at night.",
"humanValidation": {
"enabled": true,
"service": "eenV1"
},
"eventFilter": {
"eventTypes": [
"een.lprPlateReadEvent.v1"
],
"resourceFilter": {
"actors": [
{
"id": "100b913c"
}
]
}
}
}Response
Response on successful creation of the rule.
Example response
{
"name": "Alert on Motion detection",
"notes": "Generate alerts on Motion Detection at night.",
"humanValidation": {
"enabled": true,
"service": "eenV1"
},
"eventFilter": {
"eventTypes": [
"een.lprPlateReadEvent.v1"
],
"resourceFilter": {
"actors": [
{
"id": "100b913c"
}
]
}
},
"createTimeStamp": "2021-04-22T00:00:00.000+00:00",
"updateTimeStamp": "2021-04-22T00:20:00.000+00:00",
"outputAlertTypes": [
"een.motionDetectionAlert.v1"
],
"endUserAccountId": "00012345"
}