Teams
10 endpoints
Get employee teams
Returns a list of teams that the specified employee is a member of
Parameters
idrequiredResponses
200List of teams
400Invalid employee ID
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 teams = await client.teams.get('id_here');89console.log(result);