Retrieve a paginated list of existing reports for application
Successful Response
const response = await fetch('/api/v2/{app_id}/reports/', { method: 'GET', headers: {}, }); const data = await response.json();
{ "results": [ { "title": "text", "description": "text", "public_report_dashboard_url": "text", "private_report_dashboard_url": "text", "inputs": { "start_date": "2024-11-21", "end_date": "2024-11-21" }, "refresh_frequency": "monthly" } ] }