# Features

## Content



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.

### [GET\]Features Service Request Schema

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`<br />`Request URL: https://developer.mescius.com/componentone/demos/aspnet/5/c1webapi/latest/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.<br />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](/componentone/api/webapi/online-webapicore/dotnet-api/C1.AspNetCore.Api.Document/C1.Web.Api.Document.Models.IDocumentFeatures.html) type object. |
| 404 | The report path or instance id does not exist. |

For more information about Report Instances. see [WebApiExplorer Demo](https://developer.mescius.com/componentone/demos/aspnet/5/webapiexplorer).