Get the most recent events from the Unleash instance or all events related to a project.
GET<your-unleash-url>/api/admin/events
Returns the last 100 events from the Unleash instance when called without a query parameter. When called with a project
parameter, returns all events for the specified project.
If the provided project does not exist, the list of events will be empty.
Request
Responses
- 200
- 401
eventsSchema
Authorization information is missing or invalid. Provide a valid API token as the authorization
header, e.g. authorization:*.*.my-admin-token
.
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' \
-H 'Accept: application/json' \
-H 'Authorization: <Authorization>'
ResponseClear