# PUT /tournaments/:id/matches/:matchId/live-result

This endpoint lets you update the live score of a match in a tournament. It works like `PUT /result`, but it does not end the match. Use the `PUT /live-result` endpoint to send in-progress scores. When the match is over, send the final score with `PUT /result`.

:::caution
Only matches in the state `running` can be updated. If the match has a different state, a 412 status is returned.
:::

### Body
See  `PUT /result`

## Parameters

| Parameter | In | Example |
| --- | --- | --- |
| `id` | path | `tio:4AHchFkVAecs2` |
| `matchId` | path | `tio:hHXxHHqBfkyUh` |

## Request body

```json
{
  "result": [[[0, 0]]]
}
```