Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface RequestOptions

    interface RequestOptions {
        timeoutInSeconds?: number;
        maxRetries?: number;
        abortSignal?: AbortSignal;
        headers?: Record<
            string,
            undefined
            | string
            | (() => string | Promise<string>),
        >;
    }
    Index

    Properties

    timeoutInSeconds?: number

    The maximum time to wait for a response in seconds.

    maxRetries?: number

    The number of times to retry the request. Defaults to 2.

    abortSignal?: AbortSignal

    A hook to abort the request.

    headers?: Record<string, undefined | string | (() => string | Promise<string>)>

    Additional headers to include in the request.