v1

latestOpenAPI 3.0.02026-07-14282938.4 KB
Users

Update a specific user by ID.

put/users/{user_id}

Path parameters

user_idstring required

The user identifier.

Request body

idstring
emailstring email
first_namestring
last_namestring
birth_datestring date
nationality_idstring
club_idstring

Example request

{
  "id": "userid",
  "email": "john.doe@gmail.com",
  "first_name": "John",
  "last_name": "Doe",
  "birth_date": "2025-11-30",
  "nationality_id": "NL",
  "club_id": "CLUBID"
}

Response

The updated user.

idstring
first_namestring
last_namestring

Example response

{
  "id": "ID",
  "first_name": "John",
  "last_name": "Doe",
  "nationality": {
    "iso": "BE",
    "description": "Belgian"
  },
  "club": {
    "id": "ID",
    "name": "demo name",
    "short_name": "DN",
    "country": "NL",
    "city": "Brussels",
    "email": "DN@atletiek.be"
  }
}