Tenant Email Config

9 endpoints

Get tenant email configuration

Retrieves the email provider configuration for the tenant

Responses
200OK
401Unauthorized
404Configuration not found
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-email-config.list();
8
9console.log(result);