GET api/feature/{name}
Get a feature by its name Processes this feature API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
The name of the feature to get. Pass null to be returned an empty data contract. |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
The feature or null if it does not exist
FeatureDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The name value. |
string |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Id": 2
}