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": "30f576f2-751f-41fb-8125-9f8d97ad5d8a",
"HumanReadableValue": "sample string 2",
"AllowDeals": true
},
{
"Id": "30f576f2-751f-41fb-8125-9f8d97ad5d8a",
"HumanReadableValue": "sample string 2",
"AllowDeals": true
}
]
text/html
Sample:
[{"Id":"30f576f2-751f-41fb-8125-9f8d97ad5d8a","HumanReadableValue":"sample string 2","AllowDeals":true},{"Id":"30f576f2-751f-41fb-8125-9f8d97ad5d8a","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>30f576f2-751f-41fb-8125-9f8d97ad5d8a</Id>
</QuoteAddProduct>
<QuoteAddProduct>
<AllowDeals>true</AllowDeals>
<HumanReadableValue>sample string 2</HumanReadableValue>
<Id>30f576f2-751f-41fb-8125-9f8d97ad5d8a</Id>
</QuoteAddProduct>
</ArrayOfQuoteAddProduct>