@makehq/sdk
    Preparing search index...

    Type Alias AuditLog

    The fields every audit log entry carries, whichever endpoint returned it. Audit logs record administrative and configuration events across an organization and its teams.

    The two endpoint families each add one field of their own — see AuditLogListEntry and AuditLogDetail.

    type AuditLog = {
        actor: AuditLogUser;
        createdAt: string;
        eventName: string;
        organization?: AuditLogOrganization;
        organizationId?: number;
        targetId: string;
        team?: AuditLogTeam;
        triggeredAt: string;
        uuid: string;
        version?: AuditLogVersion;
    }
    Index

    Properties

    User who triggered the event

    createdAt: string

    ISO 8601 timestamp of when the entry was stored

    eventName: string

    Name of the audited event, for example webhook_created

    organization?: AuditLogOrganization

    Organization the entry belongs to

    organizationId?: number

    ID of the organization the entry belongs to

    targetId: string

    ID of the entity the event was performed on

    Team the entry belongs to, absent for organization-level events

    triggeredAt: string

    ISO 8601 timestamp of when the audited event occurred

    uuid: string

    UUIDv4 of the audit log entry. Hyphens are optional.

    version?: AuditLogVersion

    Version transition of the audited entity, when it carries a versioned payload