CreateDeliveryNoteDelivered
Command, Introduced in version 2.38
POST https://localhost:8001/sv/001.1/api/v1/Sales/FormReports/CreateDeliveryNoteDelivered
Creates a delivery note (delivered) for the given customer order invoice.
Returns FormReportData
Required permission
Report delivery
Properties
| Name | Type | Summary | Introduced in | 
|---|---|---|---|
| CustomerOrderInvoiceId | Int64 | The business key identifier of the customer order invoice to create delivery note for. References CustomerOrderInvoices 
 | |
| PrintoutDate | DateTimeOffset? | The printout date on the delivery note. 
 | |
| IncludeExternalDocuments | Boolean | Specifies if external documents should be included with the delivery note. 
 | |
| ShowBackorderedRows | Boolean | Specifies if backorder rows should be included in the delivery note. 
 | |
| FormReportConfigurationId | Int64? | The business key identifier of the form report configuration to apply for the delivery note. References FormReportConfigurations 
 | 
Example
{
  "CustomerOrderInvoiceId": 0,
  "PrintoutDate": null,
  "IncludeExternalDocuments": false,
  "ShowBackorderedRows": false,
  "FormReportConfigurationId": null
}