PUT v1/Shipments/{shipmentId}/GeneratePackingSlip

Creates (or updates if it already exists) the packingslip for the shipment

Request Information

URI Parameters

NameDescriptionTypeAdditional information
shipmentId

Ordershipment Identity

integer

Required.

Body Parameters

None.

Response Information

Resource Description

File structure including the document (in Base64) itself

File
NameDescriptionTypeAdditional information
CreatedTimestamp

Gets the date/time on which the file was created

date

None.

ChangedTimestamp

Gets the date/time on which the file was last changed

date

None.

FileLength

Gets the byte length of the file. Only set id Base64 field is loaded

integer

Required

Checksum

SHA1 checksum of file contents. Only set id Base64 field is loaded

string

None.

Sequence

Gets or sets the sequence.

integer

None.

Base64Data

Gets or sets the base64 data.

string

None.

Id

Gets or sets the identifier.

integer

Required

Filename

Gets or sets the filename.

string

Required

Max length: 255

Response Formats

application/json, text/json

Sample:
{
  "CreatedTimestamp": "2026-01-11T16:17:31.5763247+01:00",
  "ChangedTimestamp": "2026-01-11T16:17:31.5763247+01:00",
  "FileLength": 3,
  "Checksum": "sample string 4",
  "Sequence": 5,
  "Base64Data": "sample string 6",
  "Id": 7,
  "Filename": "sample string 8"
}

application/xml, text/xml

Sample:
<File xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>7</Id>
  <Filename>sample string 8</Filename>
  <CreatedTimestamp>2026-01-11T16:17:31.5763247+01:00</CreatedTimestamp>
  <ChangedTimestamp>2026-01-11T16:17:31.5763247+01:00</ChangedTimestamp>
  <FileLength>3</FileLength>
  <Checksum>sample string 4</Checksum>
  <Sequence>5</Sequence>
  <Base64Data>sample string 6</Base64Data>
</File>