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

    Contains information about a box that is used in the inbound plan. The box is a container that holds multiple items.

    interface Box {
        boxId?: string;
        contentInformationSource?: BoxContentInformationSource;
        destinationRegion?: Region;
        dimensions?: Dimensions;
        externalContainerIdentifier?: string;
        externalContainerIdentifierType?: string;
        items?: Item[];
        packageId: string;
        quantity?: number;
        templateName?: string;
        weight?: Weight;
    }
    Index

    Properties

    boxId?: string

    The ID provided by Amazon that identifies a given box. This ID is comprised of the external shipment ID (which is generated after transportation has been confirmed) and the index of the box.

    contentInformationSource?: BoxContentInformationSource
    destinationRegion?: Region
    dimensions?: Dimensions
    externalContainerIdentifier?: string

    The external identifier for this container / box.

    externalContainerIdentifierType?: string

    Type of the external identifier used. Can be: AMAZON, SSCC.

    items?: Item[]

    Items contained within the box.

    packageId: string

    Primary key to uniquely identify a Package (Box or Pallet).

    quantity?: number

    The number of containers where all other properties like weight or dimensions are identical.

    templateName?: string

    Template name of the box.

    weight?: Weight