---
title: "Register User"
method: POST
path: "/api/users/register"
tags: ["users"]
---

# Register User

`POST /api/users/register`

Register a new user

## Request body

- UserRegistration
  - `email` string, email, required
  - `full_name` string, nullable
  - `subscription_tier` string

## Response `200`

Successful Response

- UserManagementUserResponse
  - `id` string, required
  - `email` string, required
  - `full_name` string, nullable, required
  - `subscription_tier` string, required
  - `daily_token_limit` integer, required
  - `is_active` boolean, required
  - `created_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

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