get
https://{yourinstance}.makaira.io/audit/
Returns paginated audit log entries for the specified entity type. Supports both _start/_end and offset/limit pagination styles.
Returns audit log entries for a specific entity type, showing a history of changes made to that resource.
Requires authentication.
Request
GET /audit/{auditId}
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
auditId | string | Yes | The entity type identifier (e.g. synonym, redirect, experiment). Use List audit log categories to get available types. |
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
_start | integer | 0 | Pagination offset. |
_end | integer | 10 | End index (exclusive). |
Headers
| Header | Value |
|---|---|
Authorization | Bearer <token> |
Response
Returns a JSON array of audit log entries.
Response Body
| Field | Type | Description |
|---|---|---|
id | integer | Audit entry ID. |
entityType | string | The type of entity that was changed. |
entityId | string | The ID of the changed entity. |
action | string | The action performed: create, update, or delete. |
user | string | Email or name of the user who made the change. |
timestamp | string | ISO 8601 timestamp. |
changes | object | Description of what changed (before/after values). |
404Not Found - audit log ID does not exist

