GET quote/products/{id}
Gets the products.
Request Information
URI
https://ofd-api.blueprintcpq.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 QuoteAddProduct| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| HumanReadableValue | string |
None. |
|
| AllowDeals | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "438d517b-17d3-4223-94a1-b3c31b47722d",
"HumanReadableValue": "sample string 2",
"AllowDeals": true
},
{
"Id": "438d517b-17d3-4223-94a1-b3c31b47722d",
"HumanReadableValue": "sample string 2",
"AllowDeals": true
}
]
text/html
Sample:
[{"Id":"438d517b-17d3-4223-94a1-b3c31b47722d","HumanReadableValue":"sample string 2","AllowDeals":true},{"Id":"438d517b-17d3-4223-94a1-b3c31b47722d","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>438d517b-17d3-4223-94a1-b3c31b47722d</Id>
</QuoteAddProduct>
<QuoteAddProduct>
<AllowDeals>true</AllowDeals>
<HumanReadableValue>sample string 2</HumanReadableValue>
<Id>438d517b-17d3-4223-94a1-b3c31b47722d</Id>
</QuoteAddProduct>
</ArrayOfQuoteAddProduct>