GET quote/products/{id}
Gets the products.
Request Information
URI
https://eurotherm-web-api.xaitcpq.net/quote/products/{id}
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The Quote identifier. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The products.
Collection of QuoteAddProductName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
HumanReadableValue | string |
None. |
|
AllowDeals | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "4c5958fd-2992-4c36-9055-0835fb47405a", "HumanReadableValue": "sample string 2", "AllowDeals": true }, { "Id": "4c5958fd-2992-4c36-9055-0835fb47405a", "HumanReadableValue": "sample string 2", "AllowDeals": true } ]
text/html
Sample:
[{"Id":"4c5958fd-2992-4c36-9055-0835fb47405a","HumanReadableValue":"sample string 2","AllowDeals":true},{"Id":"4c5958fd-2992-4c36-9055-0835fb47405a","HumanReadableValue":"sample string 2","AllowDeals":true}]
application/xml, text/xml
Sample:
<ArrayOfQuoteAddProduct xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels"> <QuoteAddProduct> <AllowDeals>true</AllowDeals> <HumanReadableValue>sample string 2</HumanReadableValue> <Id>4c5958fd-2992-4c36-9055-0835fb47405a</Id> </QuoteAddProduct> <QuoteAddProduct> <AllowDeals>true</AllowDeals> <HumanReadableValue>sample string 2</HumanReadableValue> <Id>4c5958fd-2992-4c36-9055-0835fb47405a</Id> </QuoteAddProduct> </ArrayOfQuoteAddProduct>