Skip to main content
GET
List organization activity events

Authorizations

Authorization
string
header
required

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

Path Parameters

orgId
string
required

Organization ID

Example:

"org-abc123"

Query Parameters

page
number

1-based page number. Defaults to 1.

Example:

1

limit
number

Items per page (1–200). Defaults to 50.

Example:

50

eventType
string

Filter by event type. Accepts a single value or a comma-separated list. Values come from OrganizationActivityEventType (e.g. plan.purchased, member.joined, customer.blocked).

Example:

"plan.purchased,member.joined"

actorUserId
string

Only return events triggered by this user ID.

Example:

"us-2f4a6c8e"

from
string

ISO-8601 timestamp lower bound (events with occurredAt >= from).

Example:

"2026-05-01T00:00:00.000Z"

to
string

ISO-8601 timestamp upper bound (events with occurredAt < to).

Example:

"2026-06-01T00:00:00.000Z"

Response

Paginated activity events as { items, total }

items
object[]
required

Page of activity events ordered by occurredAt DESC

total
number
required

Total number of events matching the filter (across all pages)