Register Direct
Direct registration: create tenant + user account in one step. Accepts email/password, Google ID token, or Microsoft ID token. On success, returns JWT so the user can proceed to onboarding immediately. Email/password registrations: email_verified=false, OTP sent automatically. OAuth registrations (Google/Microsoft): email_verified=true (provider already verified). Rate limited: 10 registrations per hour per IP (100/hour on staging).
Direct registration: create tenant + user account in one step.
Accepts email/password, Google ID token, or Microsoft ID token. On success, returns JWT so the user can proceed to onboarding immediately.
Email/password registrations: email_verified=false, OTP sent automatically. OAuth registrations (Google/Microsoft): email_verified=true (provider already verified).
Rate limited: 10 registrations per hour per IP (100/hour on staging).
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://loading/api/v1/signup/register" \ -H "Content-Type: application/json" \ -d '{ "organization_name": "string" }'{
"access_token": "string",
"expires_in": 0,
"tenant": {},
"token_type": "Bearer",
"user": {}
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}