Inventory details required to update some or all items for the requested warehouse.

InventoryUpdate

interface InventoryUpdate {
    isFullUpdate: boolean;
    items: ItemDetails[];
    sellingParty: PartyIdentification;
}

Properties

isFullUpdate: boolean

When true, this request contains a full feed. Otherwise, this request contains a partial feed. When sending a full feed, you must send information about all items in the warehouse. Any items not in the full feed are updated as not available. When sending a partial feed, only include the items that need an update to inventory. The status of other items will remain unchanged.

InventoryUpdate

items: ItemDetails[]

A list of inventory items with updated details, including quantity available.

InventoryUpdate

sellingParty: PartyIdentification

InventoryUpdate