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
status
stringFilter by invitation status
limit
integerMaximum number of invitations to return (1-100)
offset
integerNumber of invitations to skip
Responses
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';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.employee-invitations.list({
8 status: 'example',
9 limit: 1,
10 offset: 1,
11});
12
13console.log(result);