Event Tracker
Track and record system events.
Available Endpoints
| Method | Path | Description |
|---|---|---|
| GET | /api/event-tracker/{random_id} |
View tracked event details |
| POST | /api/event-tracker |
Record new event |
Example Request
curl -X GET "https://example.com/api/event-tracker/abc123" \
-H "Authorization: Bearer {token}"
Success Response (200)
{
"record": {}
}
Errors
| Code | Description |
|---|---|
| 401 | Invalid token |
| 403 | Access denied |
| 404 | Record not found |
| 422 | Validation error |