Tenant Config

6 endpoints

Get tenant configuration

Retrieve the current tenant configuration including theme, branding, and all settings.

Responses
200Successfully retrieved tenant config
401Authentication required
403Access denied - insufficient permissions
404Tenant config 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-config.list();
8
9console.log(result);