PUT Feature/ModifyFeatureOption
Modifies the FeatureOption It's up to the front to call this method so many times as needed for FeatureOption rearrangement.
Request Information
URI Parameters
None.
Body Parameters
FeatureOptionBinding| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| FeatureID | integer |
None. |
|
| Value | string |
Required String length: inclusive between 0 and 1000 |
|
| SortOrder | integer |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"FeatureID": 2,
"Value": "sample string 3",
"SortOrder": 4,
"Lang": "sample string 5",
"StoreID": 6
}
application/xml, text/xml
Sample:
<FeatureOptionBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Binding.Feature"> <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 5</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">6</StoreID> <FeatureID>2</FeatureID> <SortOrder>4</SortOrder> <Value>sample string 3</Value> <ID>1</ID> </FeatureOptionBinding>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.