For the complete documentation index, see llms.txt. This page is also available as Markdown.

Activity Logs

Get user activity logs

Retrieve activity logs for a specific user.

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