---
title: "Signup"
method: POST
path: "/v1/auth/signup"
tags: ["auth"]
---

# Signup

`POST /v1/auth/signup`

Create a fresh org + its owner user. Internal callers only.

This is the path used by NextAuth when /v1/auth/me reports no user
AND no claiming org AND no invitation — i.e. a brand-new tenant.

## Request body

- SignupRequest
  - `org_name` string, required
  - `email` string, required

## Response `200`

Successful Response

- SignupResponse
  - `org_id` string, uuid, required
  - `org_name` string, required
  - `api_key` string, required
  - `user_id` string, uuid, nullable
  - `membership_status` string
  - `role` string
  - `is_admin` boolean

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/roxels/apis/interviewer.md) · [All operations](https://skmtc.dev/roxels/apis/interviewer/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/roxels/interviewer/revisions/4ef48ed226e1/schema)
