---
title: "Update a specific user by ID."
method: PUT
path: "/users/{user_id}"
tags: ["Users"]
---

# Update a specific user by ID.

`PUT /users/{user_id}`

## Path parameters

- `user_id` string, required

## Request body

- UserUpdate — Payload for updating a user.
  - `id` string
  - `email` string, email
  - `first_name` string
  - `last_name` string
  - `birth_date` string, date
  - `nationality_id` string
  - `club_id` string

## Response `200`

The updated user.

- User — A user account. Personal data (email, birth date) is intentionally excluded from this representation; use the authenticated `GET /users/{user_id}/profile` endpoint to retrieve a user's own personal information.
  - `id` string
  - `first_name` string
  - `last_name` string
  - `nationality` Nationality — A nationality.
    - `iso` string — ISO country code.
    - `description` string
    - `flag` string, url — URL to the flag image.
  - `club` Club — An athletics club.
    - `id` string
    - `name` string
    - `short_name` string
    - `country` string
    - `city` string
    - `email` string, email

---

[API](https://skmtc.net/athletics-app/apis/atletiek-nu-competition-data-api.md) · [All operations](https://skmtc.net/athletics-app/apis/atletiek-nu-competition-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/athletics-app/atletiek-nu-competition-data-api/versions/cd49a90e4266/schema)
