Interface AuditListParams

interface AuditListParams {
    from?: string;
    to?: string;
    action?: string[];
    actorId?: string;
    limit?: number;
    cursor?: string;
}

Properties

from?: string

ISO-8601 lower bound. Defaults to 7 days ago.

to?: string

ISO-8601 upper bound. Defaults to now.

action?: string[]

Filter by one or more action names (OR semantics).

actorId?: string

Filter by user_id placed in the event metadata.

limit?: number

Max 500. Defaults to 100.

cursor?: string

Opaque cursor returned by a previous call.