FbaInboundApi - functional programming interface

  • Parameters

    • Optionalconfiguration: Configuration

    Returns {
        getItemEligibilityPreview(
            asin: string,
            program: GetItemEligibilityPreviewProgramEnum,
            marketplaceIds?: string[],
            options?: RawAxiosRequestConfig,
        ): Promise<
            (
                axios?: AxiosInstance,
                basePath?: string,
            ) => AxiosPromise<GetItemEligibilityPreviewResponse>,
        >;
    }

    • getItemEligibilityPreview:function
      • This operation gets an eligibility preview for an item that you specify. You can specify the type of eligibility preview that you want (INBOUND or COMMINGLING). For INBOUND previews, you can specify the marketplace in which you want to determine the item's eligibility. Usage Plan: | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 1 | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see Usage Plans and Rate Limits in the Selling Partner API.

        Parameters

        • asin: string

          The ASIN of the item for which you want an eligibility preview.

        • program: GetItemEligibilityPreviewProgramEnum

          The program that you want to check eligibility against.

        • OptionalmarketplaceIds: string[]

          The identifier for the marketplace in which you want to determine eligibility. Required only when program=INBOUND.

        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<
            (
                axios?: AxiosInstance,
                basePath?: string,
            ) => AxiosPromise<GetItemEligibilityPreviewResponse>,
        >