---
title: "Create new user"
method: POST
path: "/api/auth/signup"
tags: ["auth"]
---

# Create new user

`POST /api/auth/signup`

This can only be done by the logged in user.

## Request body

- object
  - `email` string
  - `password` string
  - `name` string
  - `company` string
  - `language` string
  - `redirectSuccess` string

## Response `200`

User created successfully

- object
  - `status` object
    - `code` integer
  - `data` User
    - `id` string, uuid
    - `name` string
    - `company` string
    - `language` string
    - `email` string
    - `imageUrl` string

## Other responses

- `400` — Email address allready in use

---

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