CreateSalesPackageList
Command, Introduced in version 26.6
POST https://localhost:8001/sv/001.1/api/v1/Sales/FormReports/CreateSalesPackageList
Generates a package list document from a picking list.
Returns FormReportData
Required permission
Show customer orders
Properties
| Name | Type | Summary | Introduced in |
|---|---|---|---|
| PickingListId | Int64 | The business key identifier of the picking list to generate the package list document from.
|
|
| FormReportConfigurationId | Int64? | The business key identifier of the form report configuration to apply for the package list.
|
|
| PrintOutBy | Int64? | The business key identifier of the employee for the package list.
|
|
| PrintoutDate | DateTimeOffset? | The printout date on the package list.
|
|
| ShowFreeTextRowsOnForm | Boolean | Specifies if free text rows should be shown on the package list.
|
|
| PackageRowId | Int64? | The business key identifier of the packaging row to generate the document for. Only packaging rows are valid, payload rows are not supported. When not specified, all package rows on the picking list are included.
|
Example
{
"PickingListId": 0,
"FormReportConfigurationId": null,
"PrintOutBy": null,
"PrintoutDate": null,
"ShowFreeTextRowsOnForm": false,
"PackageRowId": null
}