Workflows

11 endpoints

List workflows

List workflow definitions for the authenticated tenant with optional filtering

Parameters
status
stringFilter by status
search
stringSearch by name
limit
integerMaximum results
offset
integerOffset for pagination
Responses
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';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.workflows.list({
8 status: 'example',
9 search: 'example',
10 limit: 1,
11 offset: 1,
12});
13
14console.log(result);