BillKit/Docs Console
Audit logs

Get audit log

Retrieve one audit entry, including the details recorded with it.

GET/v1/audit_logs/{audit_log_id}
Operation get_audit_log · Scope audit_logs:read · Spec snapshot 2026-09-13

Parameters

ParameterDescription
audit_log_idstring · pathrequiredNo description in the spec.

Returns

Returns an AuditLogResponse object.

Errors

Status Cause
401 Missing or invalid API key.
403 Key is missing the audit_logs:read scope.
404 No such object, or it belongs to the other mode.
422 Validation Error
429 Rate limited. Back off and retry.
Request · curl
curl -X GET https://api.billkit.eu/v1/audit_logs/4b2a1e90-7c3d-4f18-9a55-1c0b6de3a742 \
  -H "Authorization: Bearer $BILLKIT_SECRET_KEY"
Response · 200 OK
{
  "action": "string",
  "actor_id": "actor_9XKp2vQ1",
  "actor_type": "string",
  "created": 1789392000,
  "id": "4b2a1e90-7c3d-4f18-9a55-1c0b6de3a742",
  "ip_address": "string",
  "livemode": false,
  "metadata": {
    "key": "value"
  },
  "object": "audit_log",
  "resource_id": "resource_9XKp2vQ1",
  "resource_type": "string",
  "user_agent": "string"
}