auth.group.sso.audit
The auth.group.sso.admin.audit namespace exposes read-only audit log queries for
group SSO admin tooling.
This page documents the server-side helper API:
auth.group.sso.audit.*. Public RPC likeapi.auth.group.listAuditonly exists after your app exposes app-owned group SSO wrappers.
Methods
| Method | Signature | Returns | Description |
|---|---|---|---|
list | (ctx, { connectionId?, groupId?, limit? }) | Event[] | Lists audit events with optional connection/group filters. |
Example
Query audit logs
// List all events for an SSO connection
const logs = await auth.group.sso.audit.list(ctx, {
connectionId,
limit: 50,
});
// List all events for a tenant group
const userLogs = await auth.group.sso.audit.list(ctx, {
groupId: orgId,
});