Expanded Player

The Expanded Player Object

The get players API end point requires a game secret key to be passed, which returns expanded player objects which contain more information about a player that should not be public.

Example Expanded Player Object

{
  "id": "8478281d-88dd-429e-9a96-d08a3f37631c",
  "playerName": "Tom",
  "created": "2025-01-28T11:40:46.2",
  "successfulSignIns": 45,
  "lastSuccessfulSignIn": "2025-02-15T11:40:46.2",
  "loginProviders": [ ... ],
  "avatars": [ ... ]
}

Object Properties

id guid
A unique record ID for this player.
playerName string
The publicly facing player name for this player.
created datetime
The date this player was first registered in the game.
successfulSignIns int
Total number of times this player has signed into their account.
lastSuccessfulSignIn datetime
Date and time of the last successful sign in for this player.
loginProviders
List of player login provider objects currently assigned to this player.
avatars
If player has an avatar, a list of avatar objects. Each avatar object is the same avatar, but provided in different sizes. Sizes available are based on widths, and the widths 16, 32, 64, 96, 128 and 256 will be shown here along with the original avatar size if it is different to this predetermined list. Some widths may not show if the original avatar width is smaller than any of the available widths.
Game Services Manual 2025-07-16