---
title: "Create User Route"
method: POST
path: "/backoffice/users"
tags: ["Backoffice"]
---

# Create User Route

`POST /backoffice/users`

Create User

## Request body

- UserCreate — User model for the backend API.
  - `first_name` string, nullable
  - `last_name` string, nullable
  - `email` string, email, required
  - `verified` boolean

## Response `200`

User created successfully

- User — User
  - `id` string, required
  - `auth_id` string, required
  - `email` string, required
  - `read_only` boolean
  - `language` string, nullable
  - `created_at` string, date-time, nullable

## Other responses

- `409` — User creation failed - user already exists
- `422` — Validation Error
- `500` — Internal server error

---

[API](https://skmtc.dev/toolhouse/apis/toolhouse-api.md) · [All operations](https://skmtc.dev/toolhouse/apis/toolhouse-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/toolhouse/toolhouse-api/revisions/183798ad2f5b/schema)
