v1

latestOpenAPI 3.0.12026-08-0688138402.2 KB
Bulk waybills

Creates and adds a new load carrier to the bulk waybill

Creates and adds a new load carrier to the bulk waybill. The response includes the details of the created load carrier.

Note: Load carriers are only available on waybills with PostNord.

post/waybills/{waybill_id}/load_carriers

Path parameters

waybill_idinteger required

ID of the bulk waybill to add a load carrier to.

Request body

package_type'PALLET' | 'H_PALLET' | 'Q_PALLET' | 'S_PALLET' | 'PARCEL' | 'CAGE' | 'BOX' | 'ENVELOPE' required

Type of load carrier. Not all values are valid for all carriers.

Example request

{
  "package_type": "PALLET"
}

Response

Successful.

idinteger

Unique identifier of the load carrier.

carrier_referencestring

Carrier generated reference number of the load carrier

package_type'PALLET' | 'H_PALLET' | 'Q_PALLET' | 'S_PALLET' | 'PARCEL' | 'CAGE' | 'BOX' | 'ENVELOPE'

Type of load carrier

Example response

{
  "id": 1234,
  "carrier_reference": "PALLET-001",
  "package_type": "PALLET"
}