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

    Details of the carton/package being shipped.

    interface Carton {
        cartonIdentifiers?: ContainerIdentification[];
        cartonSequenceNumber: string;
        dimensions?: Dimensions;
        items: ContainerItem[];
        trackingNumber?: string;
        weight?: Weight;
    }
    Index

    Properties

    cartonIdentifiers?: ContainerIdentification[]

    A list of carton identifiers.

    cartonSequenceNumber: string

    Carton sequence number for the carton. The first carton will be 001, the second 002, and so on. This number is used as a reference to refer to this carton from the pallet level.

    dimensions?: Dimensions
    items: ContainerItem[]

    A list of container item details.

    trackingNumber?: string

    This is required to be provided for every carton in the small parcel shipments.

    weight?: Weight