Skip to main content

User Event Object

idinteger<int32>

Unique id of the event object.

Example: 13
game_idinteger<int32>

Unique id of the parent game.

Example: 7
mod_idinteger<int32>

Unique id of the parent mod.

Example: 13
user_idinteger<int32>

Unique id of the user who performed the action.

Example: 13
date_addedinteger<int32>

Unix timestamp of date the event occurred.

Example: 1499846132
event_typeUser Event Type Enum (string)
Enum ValueDescription
USER_TEAM_JOINUser has joined a team.
USER_TEAM_LEAVEUser has left a team.
USER_SUBSCRIBEUser has subscribed to a mod.
USER_UNSUBSCRIBEUser has un-subscribed from a mod.

Possible values: [USER_TEAM_JOIN, USER_TEAM_LEAVE, USER_SUBSCRIBE, USER_UNSUBSCRIBE]

User Event Object
{
"id": 13,
"game_id": 7,
"mod_id": 13,
"user_id": 13,
"date_added": 1499846132,
"event_type": "USER_TEAM_JOIN"
}