---
title: "Create a new user."
method: POST
path: "/users"
tags: ["Users"]
---

# Create a new user.

`POST /users`

## Request body

- UserInput — Payload for creating a user.
  - `email` string, email, required
  - `first_name` string
  - `last_name` string
  - `birth_date` string, date
  - `nationality_id` string
  - `club_id` string
  - `password` string, password, required

## Response `201`

The created 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)
