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.ForgotPasswordRequestForgot password request
Responses
200Reset email sent if account exists
400Invalid request
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const result = await client.auth.create({8// Add required fields here 9});1011console.log(result);