N
NEXUSCORP
ALERT
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/logs

Search facility access logs with optional filters. Returns paginated results sorted by timestamp.

PARAMETERS

NameTypeRequiredDescription
employeeIdstringnoFilter by employee ID (e.g., EMP-047)
locationstringnoFilter by location name (partial match, e.g., 'Server Room B')
startTimestringnoFilter logs after this ISO timestamp
endTimestringnoFilter logs before this ISO timestamp
pagenumbernoPage number (default: 1)
pageSizenumbernoResults 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
  }
}