POST Feature/FeatureValues

Request Information

URI Parameters

None.

Body Parameters

GetFeatureValuesRequest
NameDescriptionTypeAdditional information
GlobalType

string

None.

Filter

Filter

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

FeatureValuesView
NameDescriptionTypeAdditional information
TotalCount

integer

None.

FeatureValues

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "FeatureValues": [
    {
      "StoreEntityID": 1,
      "FeatureID": 1,
      "FeatureName": "sample string 2",
      "Value": "sample string 3"
    },
    {
      "StoreEntityID": 1,
      "FeatureID": 1,
      "FeatureName": "sample string 2",
      "Value": "sample string 3"
    }
  ],
  "FilterableProperties": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<FeatureValuesView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.View.Feature">
  <FilterableProperties xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Services.Views">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </FilterableProperties>
  <FeatureValues>
    <FeatureValue>
      <FeatureID>1</FeatureID>
      <FeatureName>sample string 2</FeatureName>
      <StoreEntityID>1</StoreEntityID>
      <Value>sample string 3</Value>
    </FeatureValue>
    <FeatureValue>
      <FeatureID>1</FeatureID>
      <FeatureName>sample string 2</FeatureName>
      <StoreEntityID>1</StoreEntityID>
      <Value>sample string 3</Value>
    </FeatureValue>
  </FeatureValues>
  <TotalCount>1</TotalCount>
</FeatureValuesView>