Skip to main content
DELETE
/
api
/
tournaments
/
{tournamentId}
Cancel tournament
curl --request DELETE \
  --url https://ts.playservices.tech/api/api/tournaments/{tournamentId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "<string>"
}
'
{
  "cancelled": true,
  "reason": "<string>",
  "refunds": {
    "totalRefunded": 123,
    "playersRefunded": 123
  }
}

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"

Body

application/json
reason
string
required

Reason for cancellation

Response

Tournament cancelled

cancelled
boolean
reason
string
refunds
object