v1

latestOpenAPI 3.1.02026-08-041529124.1 KB
Audit Logs

Get audit log details

Retrieve detailed information about a specific audit log entry

get/v2/audit-logs/{auditLogId}

Path parameters

auditLogIdstring required

Audit log ID

Response

Successfully retrieved audit log details

actionstring

The action that was performed

categorystring

Category of the action

idstring

Unique identifier for the audit log entry

messagestring

Human-readable description of the action

occurred_atstring date-time

When the action occurred (ISO 8601 format)

subcategorystring

Subcategory of the action

successboolean

Whether the action was successful

Example response

{
  "action": "CREATED_TRAINING_CAMPAIGN",
  "actor": {
    "email": "admin@example.com",
    "id": "a1b2c3d4-e5f6-7a8b-9c0d-e1f2a3b4c5d6",
    "role": "ACCOUNT_OWNER"
  },
  "category": "SAT_PROGRAM",
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "message": "Created training campaign.",
  "occurred_at": "2024-12-01T14:30:00Z",
  "subcategory": "TRAINING",
  "success": true
}