ReportGameServerEventsEntryDto
Represents a single game server event entry in a report.
eventenumRequired
Represents the types of events that can occur on a game server.
Possible enum values
invalidInvalid or unspecified event type. Used as the default value.
player_joinIndicates a player has joined the game server.
timestampstringRequired
When did this event occur.
player_joinReportGameServerEventsEntryPlayerJoinDtoOptionalContains detailed information about a player joining a game server.
ip_addressIPAddressRequired
minecraft_namestringOptional
The Minecraft username of the player.
minecraft_uuidstringOptional
The Minecraft UUID of the player.
steam_idSteamIdOptional
A 64-bit Steam account identifier. Accepts string or numeric format.
Example
{
"event": "invalid",
"timestamp": "2024-01-01T00:00:00Z",
"player_join": {
"ip_address": "127.0.0.1",
"steam_id": "76561197960287930",
"minecraft_uuid": "string",
"minecraft_name": "string"
}
}