Audit Trail

Audit trail event groups

Returns audit trail entries grouped by publish batch (shared OlapCubeChange.batch_id) or as single-event groups when there is no batch. Pagination counts groups, not individual events. Each event includes metadata (raw audit payload) in addition to the standard list row shape.

get/governance/audit-trail/groups

Query parameters

created_gtestring date-time

Only include events with created_at greater than or equal to this ISO-8601 datetime.

created_ltestring date-time

Only include events with created_at less than or equal to this ISO-8601 datetime.

event_typeinteger[]

A list of IDs of the event types to limit the events to.

limitinteger

The limit to be used for pagination to define how many results per "page"

pageinteger

The offset (page) to be used for pagination

sincestring date-time

Only include events with created_at strictly after this ISO-8601 datetime (exclusive). Unlike created_gte, events at exactly this timestamp are omitted.

user_idinteger[]

A list of IDs of the users to limit the returned events to.

Headers

X-Company-IDstring required

Associates request with company

Response

Paginated list of event groups

countinteger required
nextstring uri nullable
previousstring uri nullable

Example response

{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2"
}

Changes