Tenant Signup

1 endpoint

Create new tenant with admin user

Creates a new tenant along with an admin user. This is the primary onboarding endpoint for new organizations. The created admin user will have full privileges for the tenant.

Request Body
github_com_skiz_limbo_internal_tenant_presentation_http_dto_request_signup.TenantSignupRequest

Tenant signup information

Responses
201Tenant and admin user created successfully
400Invalid request data
409Domain or email already exists
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.tenant-signup.create({
8// Add required fields here
9});
10
11console.log(result);