Employee Invitations
6 endpoints
List employee invitations
Retrieve a paginated list of employee invitations for the authenticated tenant. Supports filtering by status (pending, accepted, revoked, expired).
Parameters
statuslimitoffsetResponses
200Successfully retrieved invitations
400Invalid request parameters
401Authentication required
403Access denied - insufficient permissions
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.employee-invitations.list({8 status: 'example',9 limit: 1,10 offset: 1,11});1213console.log(result);