v18

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-2112360218.7 KB
Auth

Register a new user

Registers a new user with an email and password. This endpoint can be called unauthenticated to register a new admin, or authenticated (as an admin) to register a standard user into a specific team.

post/v1/auth/register

Request body

emailstring email required
passwordstring required
team_idstring uuid

Example request

{
  "email": "user@example.com",
  "password": "secretpassword123",
  "team_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}

Response

User registered successfully