GET api/Quote/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
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"
}
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>