Services > Report Services > Report Instances > Features |
Report instance allows you to fetch all the different features that are supported in your report. You can create a client application to send an HTTP request to the service application for using the report services.
To get the features supported by the report instance with the specified instance id, you need to use GET method. Report full path and instance id of executing report is specified in the request URL, as follows:
GET: http://<host>[:port]/api/report/{folder path}/{report name}/$instances/{instance id}/features
|
Copy Code
|
---|---|
http://demos.componentone.com/ASPNET/c1webapi/4.0.20171.91/api/report/ReportsRoot/FlexCommonTasks /FlexCommonTasks.flxr/MultiValue DataBound Parameters$instances/9e20a2d1-e371-44c2-87f2-bc65700172eb/features |
Parameters
Parameter | Description |
---|---|
Report Full Path | Specify the full path of the executing report. For example: FlexCommonTasks.flxr/MultiValue DataBound Parameters |
Instance Id | Specify the instance id of the executing report. |
Response Messages
HTTP Status Code | Reason |
---|---|
200 | JSON string contains IDocumentFeatures type object. |
404 | The report path or instance id does not exist. |
For more information about Report Instances. see WebApiExplorer Demo.