v1
latestOpenAPI 3.0.02026-07-14282938.4 KBUsers
Create a new user.
post/users
Request body
Example request
{
"email": "john.doe@gmail.com",
"first_name": "John",
"last_name": "Doe",
"birth_date": "2025-11-30",
"nationality_id": "NL",
"club_id": "CLUBID",
"password": "123456789"
}Response
The created user.
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"
}
}