---
title: "Register a new user"
method: POST
path: "/user"
tags: ["User"]
---

# Register a new user

`POST /user`

Create a new user.

## Request body

- UserCreate
  - `name` string, required — The display name for this user
  - `picture_url` string, uri, required — URL to the picture associated with this user
  - `description` string — A description of the user
  - `username` string, required — The unique name of the user in small case without spaces

## Response `201`

Success

- CreatedContent — Content for created response.
  - `id` string, uuid, required — Id for the newly created resource.
  - `message` string — A human readable message

## Other responses

- `202` — Accepted
- `400` — Invalid request
- `403` — Access forbidden
- `422` — Validation Error
- `500` — Server error

---

[API](https://skmtc.net/pollination/apis/pollination-server.md) · [All operations](https://skmtc.net/pollination/apis/pollination-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pollination/pollination-server/revisions/c1f3c6d96b31/schema)
