GET quote/template/{quoteTemplate}
Gets quote template entries.
Request Information
URI
https://ofd-api.blueprintcpq.net/quote/template/{quoteTemplate}
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| quoteTemplate |
The quote template identifier. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The quote template entries.
Collection of QuoteTemplateEntry| Name | Description | Type | Additional 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": "87492caa-0dbb-4599-8a51-f1f9a7b143e9",
"Prompt": "sample string 2",
"EntryMethod": 0,
"Quantity": 3,
"Variants": 4,
"ListOrder": 5,
"Product": "sample string 6"
},
{
"Id": "87492caa-0dbb-4599-8a51-f1f9a7b143e9",
"Prompt": "sample string 2",
"EntryMethod": 0,
"Quantity": 3,
"Variants": 4,
"ListOrder": 5,
"Product": "sample string 6"
}
]
text/html
Sample:
[{"Id":"87492caa-0dbb-4599-8a51-f1f9a7b143e9","Prompt":"sample string 2","EntryMethod":0,"Quantity":3,"Variants":4,"ListOrder":5,"Product":"sample string 6"},{"Id":"87492caa-0dbb-4599-8a51-f1f9a7b143e9","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>87492caa-0dbb-4599-8a51-f1f9a7b143e9</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>87492caa-0dbb-4599-8a51-f1f9a7b143e9</Id>
<ListOrder>5</ListOrder>
<Product>sample string 6</Product>
<Prompt>sample string 2</Prompt>
<Quantity>3</Quantity>
<Variants>4</Variants>
</QuoteTemplateEntry>
</ArrayOfQuoteTemplateEntry>