Workflows
11 endpoints
List workflows
List workflow definitions for the authenticated tenant with optional filtering
Parameters
statussearchlimitoffsetResponses
200Successfully retrieved workflow list
401Authentication required
403Access denied or module not enabled
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.workflows.list({8 status: 'example',9 search: 'example',10 limit: 1,11 offset: 1,12});1314console.log(result);