1
Find the Insider
Round 1 of 5
MISSION BRIEFING
NEXUS security systems have detected an unauthorized late-night access to Server Room B. Our monitoring flagged an entry at exactly 23:47 on March 15, 2045. This access occurred outside the approved maintenance window and was not pre-authorized. Your first task is to identify the employee who made this access.
OBJECTIVE
Identify the employee who accessed Server Room B at 23:47 on March 15, 2045. Return their full name and employee ID.
HINTS
Use these if you get stuck
- [1]The access logs endpoint supports filtering by location and time range.
- [2]Timestamps in the system use ISO 8601 format (e.g., 2045-03-15T23:47:00Z).
AVAILABLE ENDPOINTS
GET
/api/logsSearch facility access logs with optional filters. Returns paginated results sorted by timestamp.
PARAMETERS
| Name | Type | Required | Description |
|---|---|---|---|
| employeeId | string | no | Filter by employee ID (e.g., EMP-047) |
| location | string | no | Filter by location name (partial match, e.g., 'Server Room B') |
| startTime | string | no | Filter logs after this ISO timestamp |
| endTime | string | no | Filter logs before this ISO timestamp |
| page | number | no | Page number (default: 1) |
| pageSize | number | no | Results per page (default: 50) |
EXAMPLE RESPONSE
{
"data": [
{
"id": "LOG-0001",
"employeeId": "EMP-010",
"employeeName": "Carlos Mendez",
"location": "Server Room A",
"timestamp": "2045-03-10T09:15:00Z",
"accessType": "entry",
"method": "badge",
"granted": true
}
],
"pagination": {
"page": 1,
"pageSize": 50,
"total": 500,
"totalPages": 10
}
}