POST quote/template
(An Action that handles HTTP POST requests) Create template quote.
Request Information
URI
https://mtm-api.xaitcpq.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": "5199e359-8b0e-4245-8be5-7cc9a8f3bf0b"
}
text/html
Sample:
{"Name":"sample string 1","Personal":true,"QuoteId":"5199e359-8b0e-4245-8be5-7cc9a8f3bf0b"}
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>5199e359-8b0e-4245-8be5-7cc9a8f3bf0b</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>