POST api/admin/PriceApi/UpdateFixedPricing

Request Information

URI Parameters

None.

Body Parameters

ProductFixedPriceModel
NameDescriptionTypeAdditional information
IsFixedPrice

boolean

None.

FixedBasePrice

decimal number

None.

ProductID

integer

Range: inclusive between 1 and 2147483647

UpdatedBy

string

None.

Request Formats

application/json, text/json

Sample:
{
  "IsFixedPrice": true,
  "FixedBasePrice": 2.0,
  "ProductID": 3,
  "UpdatedBy": "sample string 4"
}

application/xml, text/xml

Sample:
<ProductFixedPriceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAWModels.PostModel">
  <FixedBasePrice>2</FixedBasePrice>
  <IsFixedPrice>true</IsFixedPrice>
  <ProductID>3</ProductID>
  <UpdatedBy>sample string 4</UpdatedBy>
</ProductFixedPriceModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.