---
title: "Create a user in your organization"
method: POST
path: "/users"
tags: ["Users"]
---

# Create a user in your organization

`POST /users`

## Request body

- CreateUserInput
  - `email` string, required — The email address for the new user
  - `firstName` string, required — The first name of the new user
  - `lastName` string, required — The last name of the new user

## Response `201`

Created

- User
  - `id` string — The user ID
  - `email` string — The user email address
  - `firstName` string — The user first name
  - `lastName` string — The user last name
  - `status` string — The user status (e.g., ACTIVE, INACTIVE)
  - `createdAt` string, date-time — When the user was created

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `409` — Conflict — user already exists
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.net/elementum/apis/elementum-api.md) · [All operations](https://skmtc.net/elementum/apis/elementum-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/elementum/elementum-api/versions/0bd8997bc49d/schema)
