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

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

    interface OrderItem {
        amazonProductIdentifier?: string;
        isBackOrderAllowed: boolean;
        itemSequenceNumber: string;
        listPrice?: Money;
        netCost?: Money;
        orderedQuantity: ItemQuantity;
        vendorProductIdentifier?: string;
    }
    Index

    Properties

    amazonProductIdentifier?: string

    Amazon Standard Identification Number (ASIN) of an item.

    isBackOrderAllowed: boolean

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

    itemSequenceNumber: string

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

    listPrice?: Money
    netCost?: Money
    orderedQuantity: ItemQuantity
    vendorProductIdentifier?: string

    The vendor selected product identification of the item.