This operation retrieves audit logs for the authenticated principal. You can filter by wallet, principal, action, result, or time range. Use cursor-based pagination with after and before. The cursor query parameter is deprecated (alias for after; use after instead). Prefer meta.after / meta.before / meta.has_more for pagination; result.next_cursor is deprecated.
Filter audit logs by wallet ID. The wallet ID can be retrieved by calling the List all wallets operation.
Filter audit logs by the principal that performed the action. The principal ID can be retrieved by calling the List all principals operation.
Filter audit logs by action name (for example, transfer.initiate, delegation.create).
1 - 128Filter audit logs by result. Possible values: allowed, denied, pending, error. If omitted, all results are returned.
allowed, denied, pending, error Filter audit logs created at or after this timestamp (ISO 8601 format).
Filter audit logs created before this timestamp (ISO 8601 format).
A cursor for forward pagination. Pass the after value from meta in a previous response to retrieve the next page.
A cursor for backward pagination. Pass the before value from meta in a previous response to retrieve the preceding page.
Deprecated. Use after instead (same semantics).
The maximum number of items to return. Range: [1, 200].
1 <= x <= 200Successful Response
Cursor-paginated audit result set (legacy shape; also see response meta).
Pagination metadata for list responses.
Supports both legacy offset-based and cursor-based pagination.
Cursor fields (has_more, after, before) are populated for
cursor-paginated endpoints. Legacy fields (offset, limit) are
populated when the caller uses the deprecated offset parameter.