Search for events (deprecated)
POST<your-unleash-url>/api/admin/events/search
deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
Allows searching for events matching the search criteria in the request body
Request
Responses
- 200
eventsSchema
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '<your-unleash-url>/api/admin/events/search' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: <Authorization>' \
--data-raw '{
"type": "feature-created",
"project": "default",
"feature": "my.first.flag",
"query": "admin@example.com",
"limit": 50,
"offset": 100
}'
ResponseClear