/

Get Report Templates

Retrieve a paginated list of available report templates

GET/api/v2/{app_id}/report_templates/
Authorization
Path parameters
app_id*App Id
Query parameters
Response

Successful Response

Body
next_pageNext Page
results*Results
Request
const response = await fetch('/api/v2/{app_id}/report_templates/', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "results": [
    {
      "template_id": "text",
      "title": "text",
      "description": "text",
      "meta": {
        "category": [
          "text"
        ],
        "thumbnail": "text"
      }
    }
  ]
}