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| Name | Description | Type | Additional 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": "979a7c9a-0b67-447b-8be5-8af4261c4f81"
}
text/html
Sample:
{"Name":"sample string 1","Personal":true,"QuoteId":"979a7c9a-0b67-447b-8be5-8af4261c4f81"}
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>979a7c9a-0b67-447b-8be5-8af4261c4f81</QuoteId> </QuoteToQuoteTemplate>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
True if it succeeds, false if it fails.
booleanResponse 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>