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 AuditEvent type represents an audit log entry for actions performed within your team. Events conform to the OCSF v1.5.0 standard.

Fields

id
String!
required
Unique identifier for the event.
time
String!
required
When the event occurred (ISO 8601 format).
category
AuditEventCategory!
required
High-level category: MEETING_OPERATIONS, TEAM_OPERATIONS, USER_OPERATIONS, or AUTHENTICATION.
action
AuditEventAction!
required
The specific action that occurred (e.g., MEETING_DELETED, TEAMMATE_ADDED).
severity
String!
required
Event severity: informational, low, medium, high, critical, fatal.
status
String!
required
Event outcome: success or failure.
message
String
Human-readable event description.
class_uid
Int!
required
OCSF class UID for compliance mapping.
activity_id
Int!
required
OCSF activity ID for compliance mapping.
type_uid
Int!
required
OCSF type UID, computed as class_uid * 100 + activity_id.
actor
AuditEventActor
The user who performed the action. Contains user_id, and optionally email, full_name (when include_pii is true), and ip_address.
resource
AuditEventResource
The affected resource with type (meeting or team) and id.
metadata
String
Additional context as a JSON string of key-value pairs.