Workflow Templates

4 endpoints

List workflow templates

List available workflow templates, optionally filtered by vertical

Parameters
vertical
stringFilter by vertical (e.g., lab, field_services)
category
stringFilter by category (e.g., notifications, operations)
Responses
200Successfully retrieved template list
401Authentication required
403Access denied
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.workflow-templates.list({
8 vertical: 'example',
9 category: 'example',
10});
11
12console.log(result);