Audit Trail

Audit Trail Events

Generates a list of audit trail events similar to what is seen on the Cube portal. These events include data imports from source systems, any data published to Cube from spreadsheets, and when source system dimensions are re-synced.

get/governance/audit-trail

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

Audit Trail Events

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