Tasks

16 endpoints

List tasks

Get a paginated list of tasks with optional filtering

Parameters
page
integerPage number
page_size
integerPage size
status
stringFilter by status
priority
stringFilter by priority
type
stringFilter by type
assignee_id
stringFilter by assignee ID
customer_id
stringFilter by customer ID
search
stringSearch in title and description
Responses
200Successfully retrieved tasks
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.tasks.list({
8 page: 1,
9 page_size: 1,
10 status: 'example',
11 priority: 'example',
12 type: 'example',
13 assignee_id: 'example',
14 customer_id: 'example',
15 search: 'example',
16});
17
18console.log(result);