GET api/ProductFeatures?filterExpression={filterExpression}

Returns list of all ProductFeatures Data based on specified filter criteria

Request Information

URI Parameters

NameDescriptionTypeAdditional information
filterExpression

Filter expression/criteria

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ProductFeaturesData
NameDescriptionTypeAdditional information
ProductFeaturesID

integer

None.

ProductID

integer

None.

LanguagesSupported

string

None.

DatabasesSupported

string

None.

FeaturesSupported

string

None.

CreatedDate

date

None.

UpdatedDate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProductFeaturesID": 1,
    "ProductID": 2,
    "LanguagesSupported": "sample string 3",
    "DatabasesSupported": "sample string 4",
    "FeaturesSupported": "sample string 5",
    "CreatedDate": "2026-01-18T14:39:00.8011632-08:00",
    "UpdatedDate": "2026-01-18T14:39:00.8011632-08:00"
  },
  {
    "ProductFeaturesID": 1,
    "ProductID": 2,
    "LanguagesSupported": "sample string 3",
    "DatabasesSupported": "sample string 4",
    "FeaturesSupported": "sample string 5",
    "CreatedDate": "2026-01-18T14:39:00.8011632-08:00",
    "UpdatedDate": "2026-01-18T14:39:00.8011632-08:00"
  }
]

text/xml

Sample:
<ArrayOfProductFeaturesData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CodeBhagat.DAL">
  <ProductFeaturesData>
    <CreatedDate>2026-01-18T14:39:00.8011632-08:00</CreatedDate>
    <DatabasesSupported>sample string 4</DatabasesSupported>
    <FeaturesSupported>sample string 5</FeaturesSupported>
    <LanguagesSupported>sample string 3</LanguagesSupported>
    <ProductFeaturesID>1</ProductFeaturesID>
    <ProductID>2</ProductID>
    <UpdatedDate>2026-01-18T14:39:00.8011632-08:00</UpdatedDate>
  </ProductFeaturesData>
  <ProductFeaturesData>
    <CreatedDate>2026-01-18T14:39:00.8011632-08:00</CreatedDate>
    <DatabasesSupported>sample string 4</DatabasesSupported>
    <FeaturesSupported>sample string 5</FeaturesSupported>
    <LanguagesSupported>sample string 3</LanguagesSupported>
    <ProductFeaturesID>1</ProductFeaturesID>
    <ProductID>2</ProductID>
    <UpdatedDate>2026-01-18T14:39:00.8011632-08:00</UpdatedDate>
  </ProductFeaturesData>
</ArrayOfProductFeaturesData>