CreateQuote
Command, Introduced in version 2.52
POST https://localhost:8001/sv/001.1/api/v1/Sales/FormReports/CreateQuote
Creates a Quote document.
Returns FormReportData
Required permission
Show quote
Properties
Name | Type | Summary | Introduced in |
---|---|---|---|
QuoteId | Int64 | The business key identifier of the quote.
|
|
PrintoutDate | DateTimeOffset? | The printout date on the quote document.
|
|
ShowPrice | Boolean | Specifies if the price should be visible on the quote document.
|
|
ShowTotalPrice | Boolean | Specifies if the total price should be visible on the quote document.
|
|
IncludeExternalDocuments | Boolean | Specifies if external documents should be included with the quote.
|
|
FormReportConfigurationId | Int64? | The business key identifier of the form report configuration to apply for the quote.
|
Example
{
"QuoteId": 0,
"PrintoutDate": null,
"ShowPrice": false,
"ShowTotalPrice": false,
"IncludeExternalDocuments": false,
"FormReportConfigurationId": null
}