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

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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
}