A listings item.

Item

interface Item {
    attributes?: { [key: string]: any };
    fulfillmentAvailability?: FulfillmentAvailability[];
    issues?: Issue[];
    offers?: ItemOfferByMarketplace[];
    procurement?: ItemProcurement[];
    sku: string;
    summaries?: ItemSummaryByMarketplace[];
}

Properties

attributes?: { [key: string]: any }

A JSON object containing structured listings item attribute data keyed by attribute name.

Item

fulfillmentAvailability?: FulfillmentAvailability[]

The fulfillment availability for the listings item.

Item

issues?: Issue[]

The issues associated with the listings item.

Item

Offer details for the listings item.

Item

procurement?: ItemProcurement[]

The vendor procurement information for the listings item.

Item

sku: string

A selling partner provided identifier for an Amazon listing.

Item

Summary details of a listings item.

Item