PUT api/Quote/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

Purchace_Order_Quote
NameDescriptionTypeAdditional information
Id

integer

None.

ProductId

integer

None.

Amount

integer

None.

Enable

boolean

None.

QuoteId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "ProductId": 2,
  "Amount": 3,
  "Enable": true,
  "QuoteId": "sample string 5"
}

application/xml, text/xml

Sample:
<Purchace_Order_Quote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JmplusAPI">
  <Amount>3</Amount>
  <Enable>true</Enable>
  <Id>1</Id>
  <ProductId>2</ProductId>
  <QuoteId>sample string 5</QuoteId>
</Purchace_Order_Quote>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.