Assignables

1 endpoint

List assignable entities

Returns a list of users and teams (if enabled) that can be assigned to tasks

Parameters
search
stringSearch query to filter assignables by name
type
stringFilter by type: identity or team
limit
integerMaximum number of results (default 50)
offset
integerNumber of results to skip (default 0)
Responses
200List of assignable entities
401Authentication required
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.assignables.list({
8 search: 'example',
9 type: 'example',
10 limit: 1,
11 offset: 1,
12});
13
14console.log(result);