Authorization: ********************curl --location --request GET 'https://dev.your-api-server.com/activity_logs?page&per_page&action&user_id' \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"user_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"action": "employee.created",
"resource_type": "employee",
"resource_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"meta": {
"employee_number": "EMP-001",
"name": "John Doe"
},
"created_at": "2025-11-15T10:23:00Z"
}
],
"meta": {
"current_page": 1,
"per_page": 25,
"total": 120,
"last_page": 5,
"from": 1,
"to": 25
}
}