Workflow Analytics
16 endpoints
Get daily execution counts
Get daily execution counts for a workflow
Parameters
workflow_idrequiredperiodResponses
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';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const result = await client.workflow-analytics.list({8 period: 'example',9});1011console.log(result);