POST api/Purchase/UpdatePurchaseQuoteAmount

For Updating Purchased Quote Amount

Request Information

URI Parameters

None.

Body Parameters

PurchaseQuote
NameDescriptionTypeAdditional information
PurchaseID

integer

None.

QuoteAmount

decimal number

None.

CreatedBy

integer

None.

CreatedDate

date

None.

ModifiedBy

integer

None.

ModifiedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "PurchaseID": 1,
  "QuoteAmount": 2.0,
  "CreatedBy": 3,
  "CreatedDate": "2020-02-27T04:48:47.9561294+11:00",
  "ModifiedBy": 5,
  "ModifiedDate": "2020-02-27T04:48:47.9561294+11:00"
}

application/xml, text/xml

Sample:
<PurchaseQuote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TARWebAPI.Models">
  <CreatedBy>3</CreatedBy>
  <CreatedDate>2020-02-27T04:48:47.9561294+11:00</CreatedDate>
  <ModifiedBy>5</ModifiedBy>
  <ModifiedDate>2020-02-27T04:48:47.9561294+11:00</ModifiedDate>
  <PurchaseID>1</PurchaseID>
  <QuoteAmount>2</QuoteAmount>
</PurchaseQuote>

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.