Retrieve a paginated list of available report templates
Successful Response
const response = await fetch('/api/v2/{app_id}/report_templates/', { method: 'GET', headers: {}, }); const data = await response.json();
{ "results": [ { "template_id": "text", "title": "text", "description": "text", "meta": { "category": [ "text" ], "thumbnail": "text" } } ] }