ReferenceAudit

List audit events

Immutable, append-only record of privileged and destructive actions.

Records are tenant-scoped by construction and never contain credentials.

GET
/api/v1/audit/events

Authorization

ApiKeyAuth
x-api-key<token>

A platform key (ck_live_…). Mint one in the console under Settings → API Keys.

In: header

Query Parameters

action?string
resource_type?string
from?string
Formatdate-time
to?string
Formatdate-time
limit?integer

Maximum records to return.

Range1 <= value <= 200
Default50

Response Body

application/json

curl -X GET "https://example.com/api/v1/audit/events"
{  "events": [    {      "event_id": "string",      "timestamp": "2019-08-24T14:15:22Z",      "action": "string",      "actor_user_id": "string",      "resource_type": "string",      "resource_id": "string",      "outcome": "success",      "trace_id": "string"    }  ]}
Was this page helpful?
Report an issue