Search for events
Allows searching for events that match the query parameter criteria.
Query parameters
Find events by a free-text search query. The query will be matched against the event data payload (if any).
Filter by event ID using supported operators: IS, IS_ANY_OF.
Filter by group ID using supported operators: IS, IS_ANY_OF.
Filter by feature name using supported operators: IS, IS_ANY_OF
Filter by projects ID using supported operators: IS, IS_ANY_OF.
Filter by event type using supported operators: IS, IS_ANY_OF.
Filter by the ID of the event creator, using supported operators: IS, IS_ANY_OF.
The starting date of the creation date range in IS:yyyy-MM-dd format
The ending date of the creation date range in IS:yyyy-MM-dd format
The number of features to skip when returning a page. By default it is set to 0.
The number of feature environments to return in a page. By default it is set to 50. The maximum is 1000.
Filter by environment name using supported operators: IS, IS_ANY_OF.
Response
eventSearchResponseSchema
Example response
{
"events": [
{
"createdAt": "2023-07-05T12:56:00.000Z",
"type": "feature-created",
"createdBy": "johndoe",
"createdByUserId": 1337,
"environment": "development",
"project": "default",
"featureName": "my.first.feature",
"data": {
"name": "new-feature",
"description": "Flag description",
"type": "release",
"project": "my-project",
"stale": false,
"variants": [],
"createdAt": "2022-05-31T13:32:20.547Z",
"lastSeenAt": null,
"impressionData": true
},
"preData": {
"name": "new-feature",
"description": "Flag description",
"type": "release",
"project": "my-project",
"stale": false,
"variants": [],
"createdAt": "2022-05-31T13:32:20.547Z",
"lastSeenAt": null,
"impressionData": true
},
"tags": [
{
"value": "a-tag-value",
"type": "simple",
"color": "#FFFFFF"
}
],
"ip": "192.168.1.1",
"groupType": "change-request",
"groupId": "01HQVX5K8P9EXAMPLE123456"
}
],
"total": 842
}