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 QuoteAddProductName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
HumanReadableValue | string |
None. |
|
AllowDeals | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "163bdc89-ccfb-4033-a0b3-2b1db1faa55e", "HumanReadableValue": "sample string 2", "AllowDeals": true }, { "Id": "163bdc89-ccfb-4033-a0b3-2b1db1faa55e", "HumanReadableValue": "sample string 2", "AllowDeals": true } ]
text/html
Sample:
[{"Id":"163bdc89-ccfb-4033-a0b3-2b1db1faa55e","HumanReadableValue":"sample string 2","AllowDeals":true},{"Id":"163bdc89-ccfb-4033-a0b3-2b1db1faa55e","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>163bdc89-ccfb-4033-a0b3-2b1db1faa55e</Id> </QuoteAddProduct> <QuoteAddProduct> <AllowDeals>true</AllowDeals> <HumanReadableValue>sample string 2</HumanReadableValue> <Id>163bdc89-ccfb-4033-a0b3-2b1db1faa55e</Id> </QuoteAddProduct> </ArrayOfQuoteAddProduct>