Information associated with a single SKU in the seller's catalog.

Item

interface Item {
    asin: string;
    expiration?: string;
    fnsku: string;
    labelOwner: string;
    manufacturingLotCode?: string;
    msku: string;
    prepInstructions: PrepInstruction[];
    quantity: number;
}

Properties

asin: string

The Amazon Standard Identification Number (ASIN) of the item.

Item

expiration?: string

The expiration date of the MSKU. In ISO 8601 datetime format with patternYYYY-MM-DD. The same MSKU with different expiration dates cannot go into the same box.

Item

fnsku: string

A unique identifier assigned by Amazon to products stored in and fulfilled from an Amazon fulfillment center.

Item

labelOwner: string

Specifies who will label the items. Options include AMAZON, SELLER, and NONE.

Item

manufacturingLotCode?: string

The manufacturing lot code.

Item

msku: string

The merchant SKU, a merchant-supplied identifier of a specific SKU.

Item

prepInstructions: PrepInstruction[]

Special preparations that are required for an item.

Item

quantity: number

The number of the specified MSKU.

Item