GET api/ProductFeatures

Returns list of all ProductFeatures Data

Request Information

URI Parameters

None.

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:37:08.9813635-08:00",
    "UpdatedDate": "2026-01-18T14:37:08.9813635-08:00"
  },
  {
    "ProductFeaturesID": 1,
    "ProductID": 2,
    "LanguagesSupported": "sample string 3",
    "DatabasesSupported": "sample string 4",
    "FeaturesSupported": "sample string 5",
    "CreatedDate": "2026-01-18T14:37:08.9813635-08:00",
    "UpdatedDate": "2026-01-18T14:37:08.9813635-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:37:08.9813635-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:37:08.9813635-08:00</UpdatedDate>
  </ProductFeaturesData>
  <ProductFeaturesData>
    <CreatedDate>2026-01-18T14:37:08.9813635-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:37:08.9813635-08:00</UpdatedDate>
  </ProductFeaturesData>
</ArrayOfProductFeaturesData>