GET api/Quote
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Purchace_Order_Quote| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ProductId | integer |
None. |
|
| Amount | integer |
None. |
|
| Enable | boolean |
None. |
|
| QuoteId | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"ProductId": 2,
"Amount": 3,
"Enable": true,
"QuoteId": "sample string 5"
},
{
"Id": 1,
"ProductId": 2,
"Amount": 3,
"Enable": true,
"QuoteId": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfPurchace_Order_Quote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JmplusAPI">
<Purchace_Order_Quote>
<Amount>3</Amount>
<Enable>true</Enable>
<Id>1</Id>
<ProductId>2</ProductId>
<QuoteId>sample string 5</QuoteId>
</Purchace_Order_Quote>
<Purchace_Order_Quote>
<Amount>3</Amount>
<Enable>true</Enable>
<Id>1</Id>
<ProductId>2</ProductId>
<QuoteId>sample string 5</QuoteId>
</Purchace_Order_Quote>
</ArrayOfPurchace_Order_Quote>