Teams

10 endpoints

Get employee teams

Returns a list of teams that the specified employee is a member of

Parameters
idrequired
stringEmployee identity ID (UUID)
Responses
200List of teams
400Invalid employee ID
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 teams = await client.teams.get('id_here');
8
9console.log(result);