Employees
5 endpoints
List employees
Returns a paginated list of employees for the authenticated tenant
Parameters
searchlimitoffsetResponses
200List of employees
401Authentication required
403Access denied
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.employees.list({8 search: 'example',9 limit: 1,10 offset: 1,11});1213console.log(result);