Skip to main content
POST
/
api
/
tournaments
/
{tournamentId}
/
players
/
{playerId}
/
rebuy
Process player rebuy
curl --request POST \
  --url https://ts.playservices.tech/api/api/tournaments/{tournamentId}/players/{playerId}/rebuy \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "additional_entries": 1
}
'
{
  "rebuy_approved": true,
  "new_entry_count": 123,
  "total_paid": 123,
  "additional_entries": 123,
  "entry_statistics": {
    "total_players": 123,
    "total_entries": 123,
    "average_entries_per_player": 123
  },
  "message": "<string>"
}
Process an additional tournament entry (rebuy) for a player. The player must not have exceeded their maximum allowed rebuys and must have sufficient balance for the rebuy fee.

Authorizations

Authorization
string
header
required

Operator API key with role-based permissions (tournaments.read, players.write, etc.)

Path Parameters

tournamentId
string
required

Unique tournament identifier

Example:

"12345"

playerId
string
required

Player identifier (can be internal player ID or database player ID)

Example:

"123"

Body

application/json
additional_entries
integer
default:1
Required range: x >= 1
Example:

1

Response

Rebuy processed successfully

rebuy_approved
boolean
new_entry_count
integer
total_paid
number
additional_entries
integer
entry_statistics
object
message
string