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

    The payload for the getFeatureSKU operation.

    interface GetFeatureSkuResult {
        featureName: string;
        ineligibleReasons?: string[];
        isEligible: boolean;
        marketplaceId: string;
        skuInfo?: FeatureSku;
    }
    Index

    Properties

    featureName: string

    The name of the feature.

    ineligibleReasons?: string[]

    A list of one or more reasons that the seller SKU is ineligible for the feature. Possible values: * MERCHANT_NOT_ENROLLED: The merchant isn't enrolled for the feature. * SKU_NOT_ELIGIBLE: The SKU doesn't reside in a warehouse that supports the feature. * INVALID_SKU: There is an issue with the SKU provided.

    isEligible: boolean

    When true, the seller SKU is eligible for the requested feature.

    marketplaceId: string

    The requested marketplace.

    skuInfo?: FeatureSku