GET quote/products/{id}

Gets the products.

Request Information

URI

https://ofd-api.blueprintcpq.net/quote/products/{id}

URI Parameters

NameDescriptionTypeAdditional information
id

The Quote identifier.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The products.

Collection of QuoteAddProduct
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

HumanReadableValue

string

None.

AllowDeals

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "806cd91f-f4bd-4dc0-887b-281629fbf8fe",
    "HumanReadableValue": "sample string 2",
    "AllowDeals": true
  },
  {
    "Id": "806cd91f-f4bd-4dc0-887b-281629fbf8fe",
    "HumanReadableValue": "sample string 2",
    "AllowDeals": true
  }
]

text/html

Sample:
[{"Id":"806cd91f-f4bd-4dc0-887b-281629fbf8fe","HumanReadableValue":"sample string 2","AllowDeals":true},{"Id":"806cd91f-f4bd-4dc0-887b-281629fbf8fe","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>806cd91f-f4bd-4dc0-887b-281629fbf8fe</Id>
  </QuoteAddProduct>
  <QuoteAddProduct>
    <AllowDeals>true</AllowDeals>
    <HumanReadableValue>sample string 2</HumanReadableValue>
    <Id>806cd91f-f4bd-4dc0-887b-281629fbf8fe</Id>
  </QuoteAddProduct>
</ArrayOfQuoteAddProduct>