POST quote/template

(An Action that handles HTTP POST requests) Create template quote.

Request Information

URI

https://ofd-api.blueprintcpq.net/quote/template

URI Parameters

None.

Body Parameters

The entry.

QuoteToQuoteTemplate
NameDescriptionTypeAdditional information
Name

string

None.

Personal

boolean

None.

QuoteId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Personal": true,
  "QuoteId": "9b4c3264-9e02-4c80-89ea-79a1c68adc77"
}

text/html

Sample:
{"Name":"sample string 1","Personal":true,"QuoteId":"9b4c3264-9e02-4c80-89ea-79a1c68adc77"}

application/xml, text/xml

Sample:
<QuoteToQuoteTemplate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
  <Name>sample string 1</Name>
  <Personal>true</Personal>
  <QuoteId>9b4c3264-9e02-4c80-89ea-79a1c68adc77</QuoteId>
</QuoteToQuoteTemplate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

True if it succeeds, false if it fails.

boolean

Response Formats

application/json, text/json, text/html

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>