POST api/Product/Update

Update the information in the database by sending an complete filled PS-XML. See the PS API website for more details

Request Information

URI Parameters

None.

Body Parameters

SimpleInputParameters
NameDescriptionTypeAdditional information
Value

string

None.

IncludeLogging

boolean

None.

ReturnContentType

Could be Unknown or Xml

ContentType

None.

Request Formats

application/json, text/json

Sample:
{
  "Value": "sample string 1",
  "IncludeLogging": true,
  "ReturnContentType": 0
}

application/xml, text/xml

Sample:
<SimpleInputParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PS.WebApi.Core.Data.InputParameters">
  <ReturnContentType>Unknown</ReturnContentType>
  <IncludeLogging>true</IncludeLogging>
  <Value>sample string 1</Value>
</SimpleInputParameters>

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.