POST api/Administrator/Feature/Update?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

FeatureApiModel
NameDescriptionTypeAdditional information
EncId

string

None.

FeatureName

string

Required

Max length: 250

FeaturePrice

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "EncId": "sample string 1",
  "FeatureName": "sample string 2",
  "FeaturePrice": 3.0
}

application/xml, text/xml

Sample:
<FeatureApiModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <EncId>sample string 1</EncId>
  <FeatureName>sample string 2</FeatureName>
  <FeaturePrice>3</FeaturePrice>
</FeatureApiModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'FeatureApiModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.