Report Templates

8 endpoints

List report templates

Get all report templates with optional filtering

Parameters
report_type
stringFilter by report type
is_active
booleanFilter by active status
is_published
booleanFilter by published status
search
stringSearch in name and description
page
integerPage number
page_size
integerPage size
Responses
200List of templates
400Invalid input data
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.report-templates.list({
8 report_type: 'example',
9 is_active: true,
10 is_published: true,
11 search: 'example',
12 page: 1,
13 page_size: 1,
14});
15
16console.log(result);