Page through credential-access audit events for the current tenant.
Returns a page of events newest-first, plus a `nextPageToken` the caller can replay to fetch the next page. Optional filters narrow by sensitivity tier, operation kind, and whether the access succeeded. The SOC2 export flow pages until `nextPageToken` is null rather than asking for an arbitrarily large window in a single call.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The tenant identifier
Query Parameters
The maximum number of items to return per page
int32int32Opaque cursor token from an external system (e.g. RAG API). When set, M:Fruxon.Common.Collections.PageToken.AsString returns this value directly instead of encoding Fruxon.Common.Collections.PageToken.Skip.
Optional sensitivity-tier filter (e.g. PHI, FINANCIAL).
"UNSPECIFIED" | "STANDARD" | "PII" | "PHI" | "FINANCIAL" | "REGULATED"Optional operation filter (DECRYPT, SIGN, ENCRYPT).
"UNSPECIFIED" | "DECRYPT" | "SIGN" | "ENCRYPT"When true, only successful operations are returned. When false, only failures. Omit for all.
Response Body
curl -X GET "https://api.fruxon.com/v1/tenants/string/credentialAuditEvents"{
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"tenantId": "00000000-0000-0000-0000-000000000000",
"integrationAuthId": "00000000-0000-0000-0000-000000000000",
"integrationKind": "string",
"operation": "DECRYPT",
"sensitivity": "STANDARD",
"userId": "string",
"agentId": "string",
"toolId": "string",
"actor": "string",
"requestId": "string",
"success": false,
"failureReason": "string",
"createdAt": 0
}
],
"nextPageToken": "string",
"totalCount": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}