Oore CI
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 IDlist_audit_logs
GET
/v1/audit-logs

Returns 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)

Formatint64
offset?integer

Page offset (default 0)

Formatint64
actor_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)

Formatint64
to_ts?integer

End of time range (unix timestamp)

Formatint64
sort?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}