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

    Represents the confirmation details of a shipment, including the purchase order number and other shipment details.

    interface ShipmentConfirmation {
        containers?: Container[];
        items: Item[];
        purchaseOrderNumber: string;
        sellingParty: PartyIdentification;
        shipFromParty: PartyIdentification;
        shipmentDetails: ShipmentDetails;
    }
    Index

    Properties

    containers?: Container[]

    Provide the details of the items in this shipment. If any of the item details field is common at a package or a pallet level, then provide them at the corresponding package.

    items: Item[]

    Provide the details of the items in this shipment. If any of the item details field is common at a package or a pallet level, then provide them at the corresponding package.

    purchaseOrderNumber: string

    Purchase order number corresponding to the shipment.

    sellingParty: PartyIdentification
    shipFromParty: PartyIdentification
    shipmentDetails: ShipmentDetails