---
title: "Register With Invite"
method: POST
path: "/api/v1/auth/register-with-invite"
tags: ["auth"]
---

# Register With Invite

`POST /api/v1/auth/register-with-invite`

Register a new user account using a waitlist invite token.

No authentication is required — the invite token itself authorises the
registration.  The email is derived from the validated token, not from
the request body.

## Request body

- RegisterWithInviteRequest — Request body for POST /auth/register-with-invite. The email is derived from the validated invite token — callers do not supply it. Password must be at least 8 characters.
  - `invite_token` string, required
  - `password` string, required
  - `first_name` string, required
  - `last_name` string, required

## Response `201`

Successful Response

- RegisterWithInviteResponse — Response body for POST /auth/register-with-invite.
  - `success` boolean, required
  - `email` string, required
  - `dev_mode` boolean

## Other responses

- `422` — Validation Error

---

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