Instance Admin
Get all login events.
Enterprise feature
Returns all login events in the Unleash system. You can optionally get them in CSV format by specifying the Accept header as text/csv.
get/api/admin/logins
Response
loginHistorySchema
Example response
{
"events": [
{
"id": 13,
"username": "admin",
"auth_type": "simple",
"type": "login",
"created_at": "2023-03-01T12:04:26.061Z",
"successful": true,
"ip": "::ffff:127.0.0.1",
"failure_reason": "No user found"
}
]
}Changes
Changed in 1 of the 7 revisions of this API.1
- ○
added the optional property
//to the response with the statusresponse-optional-property-added
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○