Get Activity Log by ID (Read-Only)
GET/api/activity-logs/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
curl -X GET "https://yoursite.com/api/activity-logs/123" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
{
"id": "1",
"log_type": "project",
"action": "created",
"created_by": "1",
"created_at": "2024-01-15 10:00:00"
}