Selling Partner API SDK for JavaScript
    Preparing search index...

    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.

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

    Properties

    containers?: Container[]

    A list of the packages in this shipment.

    purchaseOrderNumber: string

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

    sellingParty: PartyIdentification
    shipFromParty: PartyIdentification