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

    Interface OnRetryParameters

    Parameters passed to the ClientConfiguration.rateLimiting onRetry callback.

    interface OnRetryParameters {
        delay: number;
        error: AxiosError;
        rateLimit?: number;
        retryCount: number;
    }
    Index

    Properties

    delay: number

    Delay in milliseconds before the next retry attempt.

    error: AxiosError

    The Axios error that triggered the retry.

    rateLimit?: number

    Rate limit (requests per second) used to calculate the delay, if available.

    retryCount: number

    Number of retry attempts so far.