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