Details of the item being invoiced.

InvoiceItem

interface VendorInvoicesApiModelInvoiceItem {
    allowanceDetails?: VendorInvoicesApiModelAllowanceDetails[];
    amazonProductIdentifier?: string;
    chargeDetails?: VendorInvoicesApiModelChargeDetails[];
    creditNoteDetails?: VendorInvoicesApiModelCreditNoteDetails;
    hsnCode?: string;
    invoicedQuantity: VendorInvoicesApiModelItemQuantity;
    itemSequenceNumber: number;
    netCost: VendorInvoicesApiModelMoney;
    netCostUnitOfMeasure?:
        | "POUNDS"
        | "KILOGRAMS"
        | "OUNCES"
        | "GRAMS"
        | VendorInvoicesApiModelNetCostUnitOfMeasure;
    purchaseOrderNumber?: string;
    taxDetails?: VendorInvoicesApiModelTaxDetails[];
    vendorProductIdentifier?: string;
}

Properties

Individual allowance details per line item.

InvoiceItem

amazonProductIdentifier?: string

Amazon Standard Identification Number (ASIN) of an item.

InvoiceItem

Individual charge details per line item.

InvoiceItem

InvoiceItem

hsnCode?: string

HSN Tax code. The HSN number cannot contain alphabets.

InvoiceItem

InvoiceItem

itemSequenceNumber: number

Unique number related to this line item.

InvoiceItem

InvoiceItem

netCostUnitOfMeasure?:
    | "POUNDS"
    | "KILOGRAMS"
    | "OUNCES"
    | "GRAMS"
    | VendorInvoicesApiModelNetCostUnitOfMeasure

InvoiceItem

purchaseOrderNumber?: string

The Amazon purchase order number for this invoiced line item. Formatting Notes: 8-character alpha-numeric code. This value is mandatory only when invoiceType is Invoice, and is not required when invoiceType is CreditNote.

InvoiceItem

Individual tax details per line item.

InvoiceItem

vendorProductIdentifier?: string

The vendor selected product identifier of the item. Should be the same as was provided in the purchase order.

InvoiceItem

MMNEPVFCICPMFPCPTTAAATR