Auth

5 endpoints

Request password reset

Sends a password reset email to the user if email exists within the tenant

Request Body
github_com_skiz_limbo_internal_presentation_http_dto_request.ForgotPasswordRequest

Forgot password request

Responses
200Reset email sent if account exists
400Invalid request
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.auth.create({
8// Add required fields here
9});
10
11console.log(result);