Assignables
1 endpoint
List assignable entities
Returns a list of users and teams (if enabled) that can be assigned to tasks
Parameters
searchtypelimitoffsetResponses
200List of assignable entities
401Authentication required
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.assignables.list({8 search: 'example',9 type: 'example',10 limit: 1,11 offset: 1,12});1314console.log(result);