Skip to main content
Team membership in a tournament is managed through two different flows depending on your role.

Viewing enrolled teams

Navigate to /torneo/<id>/equipos/ to see the full list of teams currently enrolled in a tournament.Access is restricted to:
  • The Organizer who owns the tournament.
  • Any Administrator.
  • Teams or players already enrolled in that tournament (read-only view).

Removing a team

To remove a team from a tournament, send a POST request to:
POST /torneo/<torneo_id>/equipos/borrar/<equipo_id>/
This action is only available to Organizers (for their own tournaments) and Administrators.What happens when a team is removed:
  • The team’s enrollment record (TorneoEquipo) is deleted.
  • All match history involving that team is cleaned up.
  • Standings (Clasificacion) are recalculated automatically for all remaining teams.
Removing a team is irreversible. All of that team’s match results and statistics within the tournament are permanently deleted and standings are recalculated.
The endpoint supports both standard form submissions and AJAX requests. For AJAX calls (header X-Requested-With: XMLHttpRequest), the response is JSON:
{ "ok": true }
On failure:
{ "ok": false, "error": "El equipo no está en el torneo" }

Enrollment rules summary

RuleDetail
Sport match requiredA team can only enroll in tournaments for their sport.
No duplicate enrollmentA team cannot be enrolled in the same tournament twice.
Tournament must not have startedEnrollment closes once any match result is recorded.
Team can only enroll itselfEnrolling another team’s account is not permitted.
Max teams capEnrollment does not enforce the max_equipos cap at the database level — organizers should monitor enrollment manually.