New to Telerik Reporting? Download free 30-day trial

Get Configuration Overview

The public interface for retrieving Telerik Reporting REST Service configuration information, including details about version, license status, and available functionality, such as AI-powered insights.

Request

GET /api/reports/configuration

Response

HTTP Status Code Description
200 OK The configuration of the Telerik Reporting REST Service is retrieved successfully.

Response Body

A configuration object that includes details about version, license status, and available functionality, such as AI-powered insights.

Sample

  • Request

    GET /api/reports/configuration HTTP/1.1
    
  • Response

    HTTP/1.1 200 OK
    
    {
        "version": "19.1.25.521",
        "license": {
            "type": 2,
            "isValid": true,
            "title": null,
            "message": null,
            "messageIcon": 0,
            "statusCode": null,
            "actionLink": null,
            "actionMessage": null,
            "expiration": "2026-01-01T05:00:00"
    },
        "options": [
            {
            "name": "ai-insights",
            "requireConsent": false,
            "allowCustomPrompts": false,
            "isAvailable": false
            }
        ]
    }
    
In this article