Request
Parameters
string
required
Roblox user ID (required)
string
Roblox username (optional)
string
Roblox display name (optional)
string
User’s avatar URL (optional)
string
ISO 8601 join timestamp (optional)
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Add a player to session attendance
curl -X POST https://api.series.hr/attendance/add-attendee/session_xyz789 \
-H "apikey: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"UserId": "714760171",
"Username": "player_name",
"JoinTime": "2024-01-15T10:30:00Z",
"LeaveTime": "2024-01-15T11:45:00Z"
}'
{
"success": true,
"data": {
"attendeeId": "attendee_12345",
"sessionId": "session_xyz789",
"UserId": "714760171",
"JoinTime": "2024-01-15T10:30:00Z",
"LeaveTime": "2024-01-15T11:45:00Z",
"duration": 4500
}
}
