Skip to content

Get a single audit log entry

GET
/api/organizations/{organizationId}/audit-logs/{id}

Returns one audit log entry by id within the given organization. If the entry belongs to a different organization the API responds with 404 (existence is not leaked). Read-only.

Authorizations

ApiToken

Long-lived API token created via POST /api/api-tokens (returned once in plaintext).

Type
API Key (header: X-API-TOKEN)
or
JWT

JWT access token obtained via POST /api/auth/login. Send as: Authorization: Bearer .

Type
HTTP (bearer)

Parameters

Path Parameters

organizationId*

Organization identifier

Type
string
Required
id*

audit-log identifier

Type
string
Required

Responses

audit-log resource

JSON
{
  
"@context": "string",
  
"@id": "string",
  
"@type": "string",
  
"id": "0193b6c2-8f1a-7c3d-9e2b-1a2b3c4d5e6f",
  
"userId": "0192f8a1-4b2c-7d3e-8f10-abcdef012345",
  
"userEmail": "jane@example.com",
  
"userDisplayName": "Jane Doe",
  
"action": "update",
  
"zoneId": 42,
  
"entityType": "zone",
  
"entityId": "128",
  
"entityLabel": "shop.example.com",
  
"changes": {
  
  
"additionalProperties": "string"
  
},
  
"ipAddress": "203.0.113.7",
  
"createdAt": "2026-01-16T12:00:00.123456+00:00"
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI