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';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const result = await client.tenant-email-config.list();89console.log(result);