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

    A container used for shipping and packing items.

    interface Container {
        carrier?: string;
        containerIdentifier: string;
        containerSequenceNumber?: number;
        containerType: ContainerContainerTypeEnum;
        dimensions?: Dimensions;
        manifestDate?: string;
        manifestId?: string;
        packedItems: PackedItem[];
        scacCode?: string;
        shipMethod?: string;
        trackingNumber?: string;
        weight: Weight;
    }
    Index

    Properties

    carrier?: string

    Carrier required for EU VOC vendors only.

    containerIdentifier: string

    The container identifier.

    containerSequenceNumber?: number

    An integer that must be submitted for multi-box shipments only, where one item may come in separate packages.

    The type of container.

    dimensions?: Dimensions
    manifestDate?: string

    The date of the manifest.

    manifestId?: string

    The manifest identifier.

    packedItems: PackedItem[]

    A list of packed items.

    scacCode?: string

    SCAC code required for NA VOC vendors only.

    shipMethod?: string

    The shipment method.

    trackingNumber?: string

    The tracking number.

    weight: Weight