Skip to main content
GET
List audit events

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

action
string

Return only events with this exact action, or events whose action starts with it followed by a dot (workspace returns workspace.member_added but not workspace_automation.created). Lowercase, as actions are.

Pattern: ^[a-z][a-z0-9_.-]*$
Example:

"workspace"

occurred_before

Return events that occurred before this date. Must fall within the one-year retention window; an earlier date is rejected.

Example:

"2026-01-27"

occurred_after

Return events that occurred after this date. Must fall within the one-year retention window; an earlier date is rejected.

Example:

"2026-01-27"

cursor
string

The cursor to continue from

Example:

"eyJjcmVkZW50aWFsfQ=="

page_size
integer
default:10

Maximum number of audit events to return per page

Required range: 1 <= x <= 30
Example:

10

Response

List of audit events

events
object[]
required
hasMore
boolean
required

Whether there are more audit events to fetch. A page can hold fewer than page_size events and still not be the last one, so page on this and cursor rather than on the number of events returned.

Example:

true

cursor
string | null
required

The cursor to continue from

Example:

"eyJjcmVkZW50aWFsfQ=="