v1

latestOpenAPI 3.0.32026-07-24214879985.1 KB
Event Subscriptions

Gets info about a specific filter of a given event subscription ID.

get/eventSubscriptions/{eventSubscriptionId}/filters/{filterId}

Response

OK

idstring required

Identifier of the filter within the event subscription. Only guaranteed to be unique in the parent event subscription.

actorsstring[] required

List of actors for which events should be delivered to this event subscription. Actors must be specified in the format actorType:actorId. Wildcard Support: Use <actorType>:* to match all actors of a specific type (e.g., camera:* matches all cameras). Only full wildcards (<actorType>:*) are supported. Partial wildcards like camera:123* are not allowed. Only admin users can use wildcard actors.

Example response

{
  "id": "1231",
  "actors": [
    "camera:100d4c41",
    "camera:100f12c1",
    "camera:*"
  ],
  "types": [
    {
      "id": "een.deviceCloudStatusUpdateEvent.v1"
    }
  ],
  "data": {
    "and": [
      {
        "field": "een.lprDetection.v1.plate",
        "op": "exact",
        "value": "ABC123"
      },
      {
        "field": "een.lprDetection.v1.plateConfidence",
        "op": "gte",
        "value": 0.9
      }
    ],
    "not": [
      {
        "field": "een.lprDetection.v1.plateRegion",
        "op": "in",
        "value": [
          "EU-DE",
          "EU-FR"
        ]
      }
    ]
  }
}