FruxonDocs
ApiTokens

List recent audit events for an API key.

Returns up to `limit` events (default 50), newest-first. Records mint / rotate / revoke / used-while-revoked attempts — the full security history the dashboard renders on the per-key details pane.

GET
/v1/tenants/{tenant}/tokens/{token}/auditEvents
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

apiKey*string

The API key identifier.

tenant*string

The tenant identifier

token*string

The authentication or validation token

Query Parameters

limit?integer

Maximum number of events to return (default 50, newest-first).

Default50
Formatint32

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/tokens/string/auditEvents"
[
  {
    "id": "00000000-0000-0000-0000-000000000000",
    "tokenId": "00000000-0000-0000-0000-000000000000",
    "keyPrefix": "string",
    "eventType": "MINTED",
    "createdAt": 0,
    "userId": "string",
    "actor": "string",
    "details": "string",
    "tenantId": "00000000-0000-0000-0000-000000000000"
  }
]
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}