curl --request POST \
--url https://api.engagefabric.com/auth/register-tenant \
--header 'Content-Type: application/json' \
--data '
{
"companyName": "Acme Corporation",
"email": "admin@acme.com",
"name": "John Doe",
"password": "SecurePassword123!",
"captchaToken": "0.AbCdEfGhIjKlMnOpQrStUvWxYz...",
"acceptedTerms": true,
"slug": "acme-corp",
"applicationNote": "We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.",
"website": "<string>"
}
'import requests
url = "https://api.engagefabric.com/auth/register-tenant"
payload = {
"companyName": "Acme Corporation",
"email": "admin@acme.com",
"name": "John Doe",
"password": "SecurePassword123!",
"captchaToken": "0.AbCdEfGhIjKlMnOpQrStUvWxYz...",
"acceptedTerms": True,
"slug": "acme-corp",
"applicationNote": "We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.",
"website": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
companyName: 'Acme Corporation',
email: 'admin@acme.com',
name: 'John Doe',
password: 'SecurePassword123!',
captchaToken: '0.AbCdEfGhIjKlMnOpQrStUvWxYz...',
acceptedTerms: true,
slug: 'acme-corp',
applicationNote: 'We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.',
website: '<string>'
})
};
fetch('https://api.engagefabric.com/auth/register-tenant', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.engagefabric.com/auth/register-tenant",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'companyName' => 'Acme Corporation',
'email' => 'admin@acme.com',
'name' => 'John Doe',
'password' => 'SecurePassword123!',
'captchaToken' => '0.AbCdEfGhIjKlMnOpQrStUvWxYz...',
'acceptedTerms' => true,
'slug' => 'acme-corp',
'applicationNote' => 'We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.',
'website' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.engagefabric.com/auth/register-tenant"
payload := strings.NewReader("{\n \"companyName\": \"Acme Corporation\",\n \"email\": \"admin@acme.com\",\n \"name\": \"John Doe\",\n \"password\": \"SecurePassword123!\",\n \"captchaToken\": \"0.AbCdEfGhIjKlMnOpQrStUvWxYz...\",\n \"acceptedTerms\": true,\n \"slug\": \"acme-corp\",\n \"applicationNote\": \"We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.\",\n \"website\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.engagefabric.com/auth/register-tenant")
.header("Content-Type", "application/json")
.body("{\n \"companyName\": \"Acme Corporation\",\n \"email\": \"admin@acme.com\",\n \"name\": \"John Doe\",\n \"password\": \"SecurePassword123!\",\n \"captchaToken\": \"0.AbCdEfGhIjKlMnOpQrStUvWxYz...\",\n \"acceptedTerms\": true,\n \"slug\": \"acme-corp\",\n \"applicationNote\": \"We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.\",\n \"website\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.engagefabric.com/auth/register-tenant")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"companyName\": \"Acme Corporation\",\n \"email\": \"admin@acme.com\",\n \"name\": \"John Doe\",\n \"password\": \"SecurePassword123!\",\n \"captchaToken\": \"0.AbCdEfGhIjKlMnOpQrStUvWxYz...\",\n \"acceptedTerms\": true,\n \"slug\": \"acme-corp\",\n \"applicationNote\": \"We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.\",\n \"website\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"accessToken": "<string>",
"refreshToken": "<string>",
"tokenType": "Bearer",
"expiresIn": 123,
"tenant": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Acme Corporation",
"slug": "acme-corp",
"plan": "FREE",
"alphaApprovalStatus": "PENDING"
},
"user": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"email": "admin@acme.com",
"name": "John Doe",
"role": "OWNER",
"emailVerified": false
},
"redirectUrl": "https://admin.engagefabric.com/auth/callback"
}Register a new tenant
Creates a new tenant organization and the first admin user. Used by marketing website signup flow.
curl --request POST \
--url https://api.engagefabric.com/auth/register-tenant \
--header 'Content-Type: application/json' \
--data '
{
"companyName": "Acme Corporation",
"email": "admin@acme.com",
"name": "John Doe",
"password": "SecurePassword123!",
"captchaToken": "0.AbCdEfGhIjKlMnOpQrStUvWxYz...",
"acceptedTerms": true,
"slug": "acme-corp",
"applicationNote": "We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.",
"website": "<string>"
}
'import requests
url = "https://api.engagefabric.com/auth/register-tenant"
payload = {
"companyName": "Acme Corporation",
"email": "admin@acme.com",
"name": "John Doe",
"password": "SecurePassword123!",
"captchaToken": "0.AbCdEfGhIjKlMnOpQrStUvWxYz...",
"acceptedTerms": True,
"slug": "acme-corp",
"applicationNote": "We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.",
"website": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
companyName: 'Acme Corporation',
email: 'admin@acme.com',
name: 'John Doe',
password: 'SecurePassword123!',
captchaToken: '0.AbCdEfGhIjKlMnOpQrStUvWxYz...',
acceptedTerms: true,
slug: 'acme-corp',
applicationNote: 'We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.',
website: '<string>'
})
};
fetch('https://api.engagefabric.com/auth/register-tenant', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.engagefabric.com/auth/register-tenant",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'companyName' => 'Acme Corporation',
'email' => 'admin@acme.com',
'name' => 'John Doe',
'password' => 'SecurePassword123!',
'captchaToken' => '0.AbCdEfGhIjKlMnOpQrStUvWxYz...',
'acceptedTerms' => true,
'slug' => 'acme-corp',
'applicationNote' => 'We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.',
'website' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.engagefabric.com/auth/register-tenant"
payload := strings.NewReader("{\n \"companyName\": \"Acme Corporation\",\n \"email\": \"admin@acme.com\",\n \"name\": \"John Doe\",\n \"password\": \"SecurePassword123!\",\n \"captchaToken\": \"0.AbCdEfGhIjKlMnOpQrStUvWxYz...\",\n \"acceptedTerms\": true,\n \"slug\": \"acme-corp\",\n \"applicationNote\": \"We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.\",\n \"website\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.engagefabric.com/auth/register-tenant")
.header("Content-Type", "application/json")
.body("{\n \"companyName\": \"Acme Corporation\",\n \"email\": \"admin@acme.com\",\n \"name\": \"John Doe\",\n \"password\": \"SecurePassword123!\",\n \"captchaToken\": \"0.AbCdEfGhIjKlMnOpQrStUvWxYz...\",\n \"acceptedTerms\": true,\n \"slug\": \"acme-corp\",\n \"applicationNote\": \"We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.\",\n \"website\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.engagefabric.com/auth/register-tenant")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"companyName\": \"Acme Corporation\",\n \"email\": \"admin@acme.com\",\n \"name\": \"John Doe\",\n \"password\": \"SecurePassword123!\",\n \"captchaToken\": \"0.AbCdEfGhIjKlMnOpQrStUvWxYz...\",\n \"acceptedTerms\": true,\n \"slug\": \"acme-corp\",\n \"applicationNote\": \"We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification.\",\n \"website\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"accessToken": "<string>",
"refreshToken": "<string>",
"tokenType": "Bearer",
"expiresIn": 123,
"tenant": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Acme Corporation",
"slug": "acme-corp",
"plan": "FREE",
"alphaApprovalStatus": "PENDING"
},
"user": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"email": "admin@acme.com",
"name": "John Doe",
"role": "OWNER",
"emailVerified": false
},
"redirectUrl": "https://admin.engagefabric.com/auth/callback"
}Body
Company/Organization name
2 - 255"Acme Corporation"
Admin user email address
"admin@acme.com"
Admin user full name
2 - 255"John Doe"
Admin user password (min 8 chars, must include uppercase, lowercase, number)
8"SecurePassword123!"
Cloudflare Turnstile CAPTCHA token
"0.AbCdEfGhIjKlMnOpQrStUvWxYz..."
User has accepted terms of service
true
URL-friendly slug for the tenant (auto-generated from company name if not provided)
2 - 100"acme-corp"
Optional note about why they want to join the alpha program
500"We run an EdTech platform with 10k MAUs and want to reduce churn by adding gamification."
Honeypot field — must be empty (used for bot detection)
Response
Tenant and admin user created successfully
Access token (JWT)
Refresh token
Token type
"Bearer"
Token expiration time in seconds
Created tenant information
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Acme Corporation",
"slug": "acme-corp",
"plan": "FREE",
"alphaApprovalStatus": "PENDING"
}
Created admin user information
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"email": "admin@acme.com",
"name": "John Doe",
"role": "OWNER",
"emailVerified": false
}
URL to redirect user to after signup
"https://admin.engagefabric.com/auth/callback"
