/

Get Report Templates

Retrieve a paginated list of available report templates

get

/{app_id}/report_templates/

Authorizations
Path parameters
app_idintegerrequired
Query parameters
pageany of
limitinteger · default: 100
Responses
curl -L \
  --url '/api/v2/{app_id}/report_templates/'
{
  "next_page": 1,
  "results": [
    {
      "description": "Example template description",
      "template_id": "example-template-1",
      "title": "Example template title",
      "meta": {
        "thumbnail": "https://example.com/example_template_1_thumbnail.jpg",
        "category": [
          "eudr"
        ]
      }
    }
  ]
}

Was this helpful?