Tasks
16 endpoints
List tasks
Get a paginated list of tasks with optional filtering
Parameters
pagepage_sizestatusprioritytypeassignee_idcustomer_idsearchResponses
200Successfully retrieved tasks
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.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});1718console.log(result);