v1
latestOpenAPI 3.0.32026-07-24214879985.1 KBFetches available deep search query parameters based on events matching the input filters and other query parameter inputs. Query parameters can be requested using the parameter param. It has to be noted that the values in the filter will be a subset for those fields which are mentioned in the parameter param. Eg. If the filter specifies a set of actors (such as cameras), and parameter=actor is given, the search for matching is done with the given actor filters and therefore the response will always be a subset of the given list of actors.
Query parameters
Minimum timestamp to list auditlogs.
Maximum timestamp to list auditlogs.
Filter to get only events where the actorType and actorId value equals any one of the supplied value in the list. For each entry of list, the actor type has to be prefixed along with actor id like actorType:actorId. For example, to filter for camera with id 100d4c41, the actorId that has to be used is camera:100d4c41. To search for events from a specific type of actor, for example users, use a wildcard as actorId: user:*.
[ "camera:100d4c41", "location:abcd1234" ]
Filter to get only events associated with camera Ids mapped to the specified layout Ids. Accepts a comma-separated list of layout Ids (e.g., layoutId_1,layoutId_2). All matching camera IDs for the provided layout IDs will be included in the result.
[ "Id_1" ]
Filter to get only events associated with camera Ids mapped to the specified tag Ids. Accepts a comma-separated list of tag Ids (e.g., tagId_1,tagId_2). All matching camera IDs for the provided tag IDs will be included in the result. Here the suffix __any is used to indicate that the filter is an OR operation, i.e., events associated with any of the provided tag IDs will be included in the result.
[ "Id_1" ]
Matches with all events that have at least one motion-event related region with a name containing one or more of the values in this list. Matching is done exactly but is not case-sensitive.
[ "Parking 1" ]
Filter to get only events that have a creatorId value that equals one of the given parameter values.
To get the list of creatorIds that have been recorded for a specific actor/device, use /videoAnalyticEvents:listFieldValues.
[ "een.videoAnalytics.v1" ]
Filter to get only events that have a type value that equals one of the given parameter values.
To get the list of event types that have been recorded for a specific actor/device, use /videoAnalyticEvents:listFieldValues.
[ "een.tamperDetectionEvent.v1" ]
Provide the parameter to be returned in the response body with the list of available values for the selected parameter.
Request body
Example request
{
"objects__all": [
[
{
"upperBodyClothingColor": "yellow",
"lowerBodyClothingColor": "yellow",
"gender": "female"
}
]
]
}Response
List of field values matching search criteria
Example response
{
"results": [
{
"id": "camera:100d4c41"
}
]
}