ReferenceAPIOperationsAudit Logs
List audit log entries
Returns a paginated, filterable list of audit log entries recording user and system actions. Owner and admin roles only.
Operation ID
list_audit_logsReturns a paginated, filterable list of audit log entries recording user and system actions. Owner and admin roles only.
Authorization
bearer_auth AuthorizationBearer <token>
In: header
Query Parameters
limit?integer
Page size (default 50, max 200)
Format
int64offset?integer
Page offset (default 0)
Format
int64actor_id?string
Filter by actor user ID
action?string
Filter by action string
resource_type?string
Filter by resource type
from_ts?integer
Start of time range (unix timestamp)
Format
int64to_ts?integer
End of time range (unix timestamp)
Format
int64sort?string
Sort by created_at, actor_email, action, or resource_type
direction?string
Sort direction: asc or desc
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/audit-logs"{ "entries": [ { "action": "string", "actor_email": "string", "actor_id": "string", "created_at": 0, "details": "string", "id": 0, "resource_id": "string", "resource_type": "string" } ], "total": 0}