Tournaments players registration

For tournaments with a participation scope of ‘PRIVATE’, the player’s participation is not automatic and requires registration.

Request (POST)

/tournaments/{version}/players/register

Request body:

{
  "tournament_id": "123e4567-e89b-12d3-a456-426614174999",
  "player_registrations": [
    {
      "casino_id": 1445,
      "player_id": "player-123",
      "points_multiplier": "1.5",
      "metadata": {
        "environment": "test",
        "source": "test_suite",
        "test_case": "component_test",
        "version": "1.0.0"
      }
    }
  ]
}

Response

Status 200

{
  "total" : 1, 
  "message" : "Players registered successfully for tournament"
}

Status 400 (Tournament not found)

{
  "total" : 0,
  "data" : null,
  "message" : "tournament not found"
}