Skip to main content
POST
/
tournament
/
{tournamentId}
/
join
Enter a gamer into a tournament
curl --request POST \
  --url https://api.nexra.xyz/tournament/{tournamentId}/join \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "gamer": "silent gamer"
}'
"<any>"

Headers

x-api-key
string
required

Game API key for authentication

Example:

"abc123xyz456"

Path Parameters

tournamentId
string
required

Body

application/json
gamer
string
required

Gamer ID

Example:

"silent gamer"

Response

201 - application/json

Successfully joined the tournament.

The response is of type any.