Represents an individual item in an order, including item details, quantities, pricing, and backorder information.

OrderItem

interface VendorOrdersApiModelOrderItem {
    amazonProductIdentifier?: string;
    isBackOrderAllowed: boolean;
    itemSequenceNumber: string;
    listPrice?: VendorOrdersApiModelMoney;
    netCost?: VendorOrdersApiModelMoney;
    orderedQuantity: VendorOrdersApiModelItemQuantity;
    vendorProductIdentifier?: string;
}

Properties

amazonProductIdentifier?: string

Amazon Standard Identification Number (ASIN) of an item.

OrderItem

isBackOrderAllowed: boolean

When true, we will accept backorder confirmations for this item.

OrderItem

itemSequenceNumber: string

Numbering of the item on the purchase order. The first item will be 1, the second 2, and so on.

OrderItem

OrderItem

OrderItem

OrderItem

vendorProductIdentifier?: string

The vendor selected product identification of the item.

OrderItem

MMNEPVFCICPMFPCPTTAAATR