Get Audit Logs
Retrieve audit logs for your organization with support for search, sorting, pagination, and date filtering.
Authorizations
Bearer token obtained by authenticating with your organization's service account credentials (client_id and client_secret).
See the Getting started page for the full authentication flow.
Headers
Your organization ID, found in your organization's URL: anaconda.com/app/organizations/<ORG_ID>/.
The API version to use. Set to v1.
Query Parameters
Filter audit logs by field values. Use the format column_name:value1,value2 to match entries where the column contains any of the specified values.
You can pass multiple q parameters to build complex filters. They are combined using the search_operator parameter.
The logical operator used to combine multiple q filters.
Use or to return logs matching any filter. Use and to return only logs matching all filters.
Sort the results by one or more columns. Use the format column_name for ascending order or -column_name for descending order.
For example, -occurred_at sorts by most recent first.
The maximum number of audit log entries to return per page.
1 <= x <= 1000The number of entries to skip before returning results. Use with limit to paginate through large result sets.
x >= 0Only return audit logs that occurred on or after this timestamp. Use ISO 8601 format with timezone.
"<timestamp>"
Only return audit logs that occurred on or before this timestamp. Use ISO 8601 format with timezone.
"<timestamp>"
Response
Request succeeded and a paginated list of audit logs is returned.