Workflow Analytics

16 endpoints

Get daily execution counts

Get daily execution counts for a workflow

Parameters
workflow_idrequired
stringWorkflow ID
period
stringTime period (24h, 7d, 30d, 90d, all)
Responses
200Successfully retrieved daily counts
401Authentication required
403Access denied or module not enabled
404Workflow not found
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-analytics.list({
8 period: 'example',
9});
10
11console.log(result);