Input information for updating a box

BoxUpdateInput

interface BoxUpdateInput {
    contentInformationSource: BoxContentInformationSource;
    dimensions: Dimensions;
    items?: ItemInput[];
    packageId?: string;
    quantity: number;
    weight: Weight;
}

Properties

contentInformationSource: BoxContentInformationSource

BoxUpdateInput

dimensions: Dimensions

BoxUpdateInput

items?: ItemInput[]

The items and their quantity in the box. This must be empty if the box contentInformationSource is BARCODE_2D or MANUAL_PROCESS.

BoxUpdateInput

packageId?: string

Primary key to uniquely identify a Box Package. PackageId must be provided if the intent is to update an existing box. Adding a new box will not require providing this value. Any existing PackageIds not provided will be treated as to-be-removed

BoxUpdateInput

quantity: number

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

BoxUpdateInput

weight: Weight

BoxUpdateInput