But it shows just Telerik Reporting REST Service is up and running.
I think I need to modify that part to call the report file, what should I do? And if I called the file, how do I set the report parameter in the file?
$(document).ready(function () {
const url = '/api/reports/formats';
$.getJSON(url, function () {
$("#content").text("Telerik Reporting REST Service is up and running.");
})
.fail(function (data) {
$("#content").html("Telerik Reporting REST Service is NOT running: <br />" + data.responseText);
});
});