---
title: "Create new user"
method: POST
path: "/v1/users"
tags: ["User"]
---

# Create new user

`POST /v1/users`

Create a new user.

## Request body

- object
  - `username` string, required — The unique username of the user.
  - `first_name` string, required — First name of the user.
  - `last_name` string, required — Last name of the user.
  - `email` string, email, required — Email address of the user.
  - `password` string, password, required — Password of the user.
  - `picture` string, uri, nullable — Profile picture of the user.
  - `title` string, nullable — Work title of the user.
  - `bio` string, nullable — Self description of the user.
  - `address` string, nullable — Working address of the user.
  - `phone` string, nullable — Phone number of the user.
  - `links` string[], nullable — Links to show on profile page.
  - `languages` Language[], nullable — Languages of the user.

## Response `201`

Example response

- object
  - `id` string, required — ID of the newly created resource.

## Other responses

- `400` — Bad request
- `401` — Unauthorized request
- `403` — Forbidden
- `500` — Internal Server Error

---

[API](https://skmtc.net/opcotech/apis/elemo-api.md) · [All operations](https://skmtc.net/opcotech/apis/elemo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/opcotech/elemo-api/revisions/6ff580b1e226/schema)
