PUT Catalog/ModifyProductFeatureValue

Modifies the ProductFeatureValue It's up to the front to call this method so many times as needed for ProductFeatureValue rearrangement.

Request Information

URI Parameters

None.

Body Parameters

ProductFeatureValueBinding
NameDescriptionTypeAdditional information
ID

integer

None.

ProductID

integer

None.

FeatureID

integer

None.

FeatureOptionID

integer

None.

Value

This format and type of this value is defined by Feature

string

String length: inclusive between 0 and 4000

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "ProductID": 2,
  "FeatureID": 3,
  "FeatureOptionID": 1,
  "Value": "sample string 4",
  "Lang": "sample string 5",
  "StoreID": 6
}

application/xml, text/xml

Sample:
<ProductFeatureValueBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Binding.Catalog">
  <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>3</FeatureID>
  <FeatureOptionID>1</FeatureOptionID>
  <ProductID>2</ProductID>
  <Value>sample string 4</Value>
  <ID>1</ID>
</ProductFeatureValueBinding>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.