Represents the request payload for creating a shipping label, containing the purchase order number, selling party, ship from party, and a list of containers or packages in the shipment.

ShippingLabelRequest

interface ShippingLabelRequest {
    containers?: Container[];
    purchaseOrderNumber: string;
    sellingParty: PartyIdentification;
    shipFromParty: PartyIdentification;
}

Properties

containers?: Container[]

A list of the packages in this shipment.

ShippingLabelRequest

purchaseOrderNumber: string

Purchase order number of the order for which to create a shipping label.

ShippingLabelRequest

sellingParty: PartyIdentification

ShippingLabelRequest

shipFromParty: PartyIdentification

ShippingLabelRequest