Participant

Somebody taking part in a tournament — who they are, whether they are still in, where they finished, and what they brought.

Properties

playerstring
The player display name.
playerIdstring | null
The public player id, when the player has one. Use it to get that player's battles.See GET /api/v1/users/{publicId}/battles
clubstring | null
The club the player represents, as its short name from the club web address.See GET /api/v1/clubs/{slug}
groupstring | null
Which group the player was placed in, for example "Group A". Null unless the tournament has a group stage. Matches the group on a leaderboard row.See Leaderboard row
droppedboolean
True when the player is no longer taking part, either because they dropped out or never turned up.
finalPlacementnumber | null
Where the player finished, 1 being the winner. Settled once the tournament finishes; null while it is still running, and null for tournaments that finished before we started recording it.
listArmyList | null
The army the player submitted, or null when they submitted none.

Example

json
{
  "player": "Anders Larsson",
  "playerId": "L80MTI4R",
  "club": "stockholm-warlords",
  "group": "Group A",
  "dropped": false,
  "finalPlacement": 1,
  "list": {
    "faction": "Disciples of Tzeentch",
    "subFaction": "Guild of Summoners",
    "points": 1990,
    "battleTacticCards": ["Sever the Head", "Bring it Down"],
    "text": "Allegiance: Disciples of Tzeentch\n..."
  }
}