---
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
  - `organisation_limit` integer
  - `created_at` string, date-time, nullable
  - `is_organisation_member` boolean
  - `can_use_organisations` boolean, required — Whether the organisation switcher should be shown to this user. True either because they may create organisations of their own, or because they have been invited into someone else's — with a limit of 0 and no memberships the personal organisation is all they will ever have, so there is nothing to switch between.

## Other responses

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

---

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