GET api/ProductFeatures/{id}
Returns a ProductFeatures record based on specified ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of ProductFeatures data |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ProductFeaturesData| Name | Description | Type | Additional 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:41:21.9012061-08:00",
"UpdatedDate": "2026-01-18T14:41:21.9012061-08:00"
}
text/xml
Sample:
<ProductFeaturesData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CodeBhagat.DAL"> <CreatedDate>2026-01-18T14:41:21.9012061-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:41:21.9012061-08:00</UpdatedDate> </ProductFeaturesData>