Activity Logs
Get user activity logs
Endpoint: /activityLogs/{plyrId}
Method: GET
{
  plyrId: string,     // The player's unique identifier
  startTime?: number, // Start timestamp (optional)
  endTime?: number,   // End timestamp (optional)
  limit?: number      // Maximum number of logs to return (optional)
}{
    logs: Array<{
        timestamp: number;
        action: string;
        details: {
            [key: string]: any;
        };
    }>;
}{
    error: string;
}Last updated