GET quote/template/{quoteTemplate}

Gets quote template entries.

Request Information

URI

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

URI Parameters

NameDescriptionTypeAdditional information
quoteTemplate

The quote template identifier.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The quote template entries.

Collection of QuoteTemplateEntry
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Prompt

string

None.

EntryMethod

EntryMethod

None.

Quantity

integer

None.

Variants

integer

None.

ListOrder

integer

None.

Product

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "6c0ab5a0-0d70-4ff0-97ca-8b500351fdcd",
    "Prompt": "sample string 2",
    "EntryMethod": 0,
    "Quantity": 3,
    "Variants": 4,
    "ListOrder": 5,
    "Product": "sample string 6"
  },
  {
    "Id": "6c0ab5a0-0d70-4ff0-97ca-8b500351fdcd",
    "Prompt": "sample string 2",
    "EntryMethod": 0,
    "Quantity": 3,
    "Variants": 4,
    "ListOrder": 5,
    "Product": "sample string 6"
  }
]

text/html

Sample:
[{"Id":"6c0ab5a0-0d70-4ff0-97ca-8b500351fdcd","Prompt":"sample string 2","EntryMethod":0,"Quantity":3,"Variants":4,"ListOrder":5,"Product":"sample string 6"},{"Id":"6c0ab5a0-0d70-4ff0-97ca-8b500351fdcd","Prompt":"sample string 2","EntryMethod":0,"Quantity":3,"Variants":4,"ListOrder":5,"Product":"sample string 6"}]

application/xml, text/xml

Sample:
<ArrayOfQuoteTemplateEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
  <QuoteTemplateEntry>
    <EntryMethod>Fixed</EntryMethod>
    <Id>6c0ab5a0-0d70-4ff0-97ca-8b500351fdcd</Id>
    <ListOrder>5</ListOrder>
    <Product>sample string 6</Product>
    <Prompt>sample string 2</Prompt>
    <Quantity>3</Quantity>
    <Variants>4</Variants>
  </QuoteTemplateEntry>
  <QuoteTemplateEntry>
    <EntryMethod>Fixed</EntryMethod>
    <Id>6c0ab5a0-0d70-4ff0-97ca-8b500351fdcd</Id>
    <ListOrder>5</ListOrder>
    <Product>sample string 6</Product>
    <Prompt>sample string 2</Prompt>
    <Quantity>3</Quantity>
    <Variants>4</Variants>
  </QuoteTemplateEntry>
</ArrayOfQuoteTemplateEntry>