POST Catalog/ProductFeatureValues

Request Information

URI Parameters

None.

Body Parameters

GetProductFeatureValuesRequest
NameDescriptionTypeAdditional information
Filter

ProductFeatureValueFilter

None.

Range

AdminFilterRange

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ProductFeatureValuesView
NameDescriptionTypeAdditional information
TotalCount

integer

None.

ProductFeatureValues

Collection of ProductFeatureValue

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "ProductFeatureValues": [
    {
      "ID": 1,
      "StoreID": 2,
      "ProductID": 3,
      "FeatureID": 4,
      "FeatureOptionID": 1,
      "Value": "sample string 5"
    },
    {
      "ID": 1,
      "StoreID": 2,
      "ProductID": 3,
      "FeatureID": 4,
      "FeatureOptionID": 1,
      "Value": "sample string 5"
    }
  ]
}

application/xml, text/xml

Sample:
<ProductFeatureValuesView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Catalog">
  <ProductFeatureValues>
    <ProductFeatureValue>
      <FeatureID>4</FeatureID>
      <FeatureOptionID>1</FeatureOptionID>
      <ID>1</ID>
      <ProductID>3</ProductID>
      <StoreID>2</StoreID>
      <Value>sample string 5</Value>
    </ProductFeatureValue>
    <ProductFeatureValue>
      <FeatureID>4</FeatureID>
      <FeatureOptionID>1</FeatureOptionID>
      <ID>1</ID>
      <ProductID>3</ProductID>
      <StoreID>2</StoreID>
      <Value>sample string 5</Value>
    </ProductFeatureValue>
  </ProductFeatureValues>
  <TotalCount>1</TotalCount>
</ProductFeatureValuesView>