Audit Logging
Track user actions and system events for compliance and security auditing.
Overviewβ
Ever Gauzy maintains comprehensive audit logs through two mechanisms:
- Activity Logs β entity-level change tracking
- API Call Logs β HTTP request/response logging
Activity Logsβ
Every entity change is recorded with:
| Field | Description |
|---|---|
| Entity | Changed entity type |
| Entity ID | Changed entity identifier |
| Action | CREATED, UPDATED, DELETED |
| Actor Type | User or System |
| Updated Fields | List of changed field names |
| Updated Values | New field values |
| Previous Values | Old field values |
| Creator | User who made the change |
| Timestamp | When the change occurred |
API Call Logsβ
HTTP request/response recording:
| Field | Description |
|---|---|
| URL | Request URL |
| Method | HTTP method |
| Status Code | Response status |
| Request Headers | Request headers |
| Request Body | Request payload |
| Response Body | Response payload |
| IP Address | Client IP address |
Viewing Audit Logsβ
Audit logs are accessible via:
- API:
GET /api/activity-log - Admin UI: Settings β Audit Logs
Related Pagesβ
- Activity Log Endpoints β API reference
- API Security Best Practices β security guide