Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.fireflies.ai/llms.txt

Use this file to discover all available pages before exploring further.

The AuditEventCategory enum groups audit events into high-level categories.

Values

MEETING_OPERATIONS
Enum Value
Events related to meetings: deleted, privacy updated, viewed, shared, downloaded.
TEAM_OPERATIONS
Enum Value
Events related to team membership: teammate added or removed.
USER_OPERATIONS
Enum Value
Events related to user or team settings changes.
AUTHENTICATION
Enum Value
Events related to user authentication: login and logout.

Usage

Use this enum to filter audit events by category:
query {
  auditEvents(filters: { category: MEETING_OPERATIONS }) {
    events {
      action
      time
    }
    has_more
  }
}