Scheduled Reports
8 endpoints
List scheduled reports
Get all scheduled reports with optional filtering
Parameters
active_onlyResponses
200List of scheduled reports
401Authentication required
403Access denied
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.scheduled-reports.list({8 active_only: true,9});1011console.log(result);