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

    Provides the details of the items in this invoice.

    interface InvoiceItem {
        buyerProductIdentifier?: string;
        chargeDetails?: ChargeDetails[];
        hsnCode?: string;
        invoicedQuantity: ItemQuantity;
        itemSequenceNumber: string;
        netCost: Money;
        purchaseOrderNumber: string;
        taxDetails?: TaxDetail[];
        vendorOrderNumber?: string;
        vendorProductIdentifier?: string;
    }
    Index

    Properties

    buyerProductIdentifier?: string

    Buyer's standard identification number (ASIN) of an item.

    chargeDetails?: ChargeDetails[]

    Individual charge details per line item.

    hsnCode?: string

    Harmonized System of Nomenclature (HSN) tax code. The HSN number cannot contain alphabets.

    invoicedQuantity: ItemQuantity
    itemSequenceNumber: string

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

    netCost: Money
    purchaseOrderNumber: string

    The purchase order number for this order. Formatting Notes: 8-character alpha-numeric code.

    taxDetails?: TaxDetail[]

    Individual tax details per line item.

    vendorOrderNumber?: string

    The vendor's order number for this order.

    vendorProductIdentifier?: string

    The vendor selected product identification of the item.