Identifies an offer from a particular seller for a specified ASIN.

OfferIdentifier

interface OfferIdentifier {
    asin: string;
    fulfillmentType?: FulfillmentType;
    marketplaceId: string;
    sellerId?: string;
    sku?: string;
}

Properties

asin: string

The ASIN of the item.

OfferIdentifier

fulfillmentType?: FulfillmentType

OfferIdentifier

marketplaceId: string

A marketplace identifier. Specifies the marketplace for which data is returned.

OfferIdentifier

sellerId?: string

The seller identifier for the offer.

OfferIdentifier

sku?: string

The seller SKU of the item. This will only be present for the target offer, which belongs to the requesting seller.

OfferIdentifier