GET quote/{quote}/parts

Gets valid parts that can be added to a quote.

Request Information

URI

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

URI Parameters

NameDescriptionTypeAdditional information
quote

Quote Identifier.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The valid parts for quote.

Collection of LookupValue
NameDescriptionTypeAdditional information
Id

Object

None.

HumanReadableValue

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": {},
    "HumanReadableValue": "sample string 2"
  },
  {
    "Id": {},
    "HumanReadableValue": "sample string 2"
  }
]

text/html

Sample:
[{"Id":{},"HumanReadableValue":"sample string 2"},{"Id":{},"HumanReadableValue":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfLookupValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
  <LookupValue>
    <HumanReadableValue>sample string 2</HumanReadableValue>
    <Id />
  </LookupValue>
  <LookupValue>
    <HumanReadableValue>sample string 2</HumanReadableValue>
    <Id />
  </LookupValue>
</ArrayOfLookupValue>