Skip to main content
GET
/
api
/
internal
/
tournaments
/
{tournamentId}
/
players
Get tournament players for room assignment
curl --request GET \
  --url https://ts.playservices.tech/api/api/internal/tournaments/{tournamentId}/players \
  --header 'X-Internal-Api-Key: <api-key>'
{
  "tournament_id": "<string>",
  "total_players": 123,
  "max_players": 123,
  "tournament_status": "<string>",
  "players": [
    {
      "internal_player_id": "<string>",
      "display_name": "<string>",
      "external_id": "<string>",
      "status": "<string>",
      "points": "<string>",
      "current_round_id": "<string>",
      "current_group_id": "<string>",
      "entry_count": 123,
      "registered_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

X-Internal-Api-Key
string
header
required

Internal API key for Game Platform integration

Path Parameters

tournamentId
string
required

Unique tournament identifier

Example:

"12345"

Response

Tournament players for game platform

tournament_id
string
total_players
integer
max_players
integer
tournament_status
string
players
object[]