Mailboxes

9 endpoints

List mailboxes

List mailboxes with optional filtering and pagination

Parameters
page
integerPage number (default 1)
page_size
integerItems per page (default 20, max 100)
type
stringFilter by type
is_active
booleanFilter by active status
Responses
200Successfully retrieved mailboxes
401Authentication required
403Access denied
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.mailboxes.list({
8 page: 1,
9 page_size: 1,
10 type: 'example',
11 is_active: true,
12});
13
14console.log(result);