An open API service indexing awesome lists of open source software.

https://github.com/joswinemmanuel/telerikreport-webapi

Web API integration examples for Telerik Reporting, providing a framework for generating and managing reports programmatically.
https://github.com/joswinemmanuel/telerikreport-webapi

aspdotnet csharp telerik-reporting webapi

Last synced: about 1 year ago
JSON representation

Web API integration examples for Telerik Reporting, providing a framework for generating and managing reports programmatically.

Awesome Lists containing this project

README

          

Postman Requests

POST http://localhost:{port}/api/reports/clients - To make client id

POST http://localhost:{port}/api/reports/clients/{clientId}/instances

{

"report": "PatientReport",

"parameterValues": {

"p1": "v1",

"p2": 20

}

}

- To make an instance id

POST http://localhost:{port}/api/reports/clients/{clientId}/instances/{instanceId}/documents

{

"format": "PDF"

}

- To make document id

GET http://localhost:{port}/api/reports/clients/{clientId}/instances/{instanceId}/documents/{documentId} - To get render report