Customer Signup

1 endpoint

Create new customer within existing tenant

Creates a new customer user within an existing tenant. This allows new users to join an existing organization.

Request Body
github_com_skiz_limbo_internal_tenant_presentation_http_dto_request_signup.CustomerSignupRequest

Customer signup information

Responses
201Customer user created successfully
400Invalid request data
404Tenant not found
409Email 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.customer-signup.create({
8// Add required fields here
9});
10
11console.log(result);