---
title: "Update a league match's lifecycle status"
method: PATCH
path: "/leagues/{identifier}/matches/{matchId}/status"
tags: ["League: Scores"]
---

# Update a league match's lifecycle status

`PATCH /leagues/{identifier}/matches/{matchId}/status`

Transitions a league match between lifecycle states. Requires a personal or developer API key whose owner is currently a league ADMIN of the league in the path, with the league scores capability enabled on the key. League API access is gated at api_pro on the league owner's plan.

## Path parameters

- `identifier` string, required — League slug.
- `matchId` string, required — Match ID.

## Request body

- LeagueStatusUpdateBody — Request body for updating a league match's lifecycle status.
  - `status` string, required — Target status. Allowed league transitions: READY -> IN_PROGRESS|CANCELLED, ACCEPTED -> CANCELLED. COMPLETED is not accepted directly; matches complete automatically once scores are confirmed.

## Response `200`

The league match status was transitioned successfully.

- GameStatusUpdateResponse — Result of a successful match status transition.
  - `success` true, required
  - `matchId` string, required — ID of the updated match.
  - `previousStatus` string, required — Match status before the transition.
  - `newStatus` string, required — Match status after the transition.
  - `timestamp` string, required — Server response time (ISO 8601).

## Other responses

- `400` — Bad request (invalid body, cursor, limit, or date).
- `401` — Missing or invalid API key.
- `403` — API key lacks the required permission.
- `404` — Resource not found.
- `409` — Conflict.
- `429` — Rate limited.

## Changes

- **2026-06-10** `82f2480cdb83` — 2 info
  - api tag `League: Scores` added
  - api tag `Leagues` removed
- **2026-06-07** `ca335a5932cc` — 1 info
  - endpoint added
- **2026-06-04** `f22bd61fd595` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/teambattles/apis/teambattles-api/changes/leagues/:identifier/matches/:matchId/status/patch.md)

---

[API](https://skmtc.dev/teambattles/apis/teambattles-api.md) · [All operations](https://skmtc.dev/teambattles/apis/teambattles-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/teambattles/teambattles-api/revisions/75b07daef7dc/schema)
