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 AuditEventAction enum identifies the specific action that triggered an audit event.

Values

MEETING_DELETED
Enum Value
A meeting was deleted.
MEETING_PRIVACY_UPDATED
Enum Value
A meeting’s privacy setting was changed.
MEETING_VIEWED
Enum Value
A meeting summary was viewed.
MEETING_SHARED
Enum Value
A meeting was shared with another user.
MEETING_DOWNLOADED
Enum Value
A meeting transcript or recording was downloaded.
TEAMMATE_ADDED
Enum Value
A user was added to the team.
TEAMMATE_REMOVED
Enum Value
A user was removed from the team.
SETTINGS_UPDATED
Enum Value
Team settings were updated.
LOGIN
Enum Value
A user logged in.
LOGOUT
Enum Value
A user logged out.

Usage

Use this enum to filter audit events by specific action:
query {
  auditEvents(filters: { category: MEETING_OPERATIONS, action: MEETING_DELETED }) {
    events {
      time
      actor { user_id }
      resource { id }
    }
    has_more
  }
}