list_audit_log
Retrieve your account's audit log to review recent changes to invitations, API keys, and projects. Apply filters by event type, target, actor, or date range.
Instructions
List the audit log (GET /v1/audit-log). Scoped to your account; admin role only (viewer/member get 403). Lets an AI agent autonomously review recent operation history such as invitations / API key revocations / project changes. Filters = eventType ('invitation.created' / 'api_key.revoked' etc.) / targetKind / actorUserId / from / to. Supports cursor pagination (nextCursor format = 'created_at|id'), max limit 200.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Range end ISO timestamp (UTC) | |
| from | No | Range start ISO timestamp (UTC) | |
| limit | No | Number of results (1-200, default 50) | |
| cursor | No | Pagination cursor (pass the previous response's nextCursor as-is, 'created_at|id' format) | |
| eventType | No | Exact-match event_type filter ('invitation.created' / 'api_key.revoked' / 'membership.removed' etc.) | |
| targetKind | No | target_kind filter ('invitation' / 'api_key' / 'membership' etc.) | |
| actorUserId | No | actor_user_id filter (only a specific user's operations) |