Get user activity logs
Retrieve activity logs for a specific user.
Endpoint: /activityLogs/{plyrId} Method: GET
/activityLogs/{plyrId}
{ 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 2 months ago