List audits
Returns audit events of the specified organization to check what action was taken, on which entity, when it occurred, and who triggered it. When trigger_type is user, trigger_id corresponds to the user ID and can be queried via the user endpoint. When trigger_type is api, trigger_id corresponds to the API key ID; currently API keys are not queryable from this public API.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Organization identifier.
24^[0-9a-f]{24}$Query Parameters
Page number to query.
x >= 1Number of items per page.
1 <= x <= 100Comma-separated list of response fields to include.
"id,audited_at,action,entity_type,entity_id,trigger_type,trigger_id,trigger_name"
Sorting expression in the format :asc|desc. In aggregate mode, only accepts group_by fields or aggregated aliases (count, <function>_<field>).
^([a-z_]+):(asc|desc)$Filtering JSON expression on filterable fields in the response.
JSON expression for aggregation. Structure: {"group_by":["field"],"aggregates":[{"field":"*","function":"count"}]}. Cannot be combined with fields.
1024