PUT api/ProductFeatures

Updates an existing ProductFeatures entity

Request Information

URI Parameters

None.

Body Parameters

ProductFeaturesData object

ProductFeaturesData
NameDescriptionTypeAdditional information
ProductFeaturesID

integer

None.

ProductID

integer

None.

LanguagesSupported

string

None.

DatabasesSupported

string

None.

FeaturesSupported

string

None.

CreatedDate

date

None.

UpdatedDate

date

None.

Request 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:07.157275-08:00",
  "UpdatedDate": "2026-01-18T14:37:07.157275-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:37:07.157275-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:07.157275-08:00</UpdatedDate>
</ProductFeaturesData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.