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

    Interface RequestOptions

    interface RequestOptions {
        timeoutInSeconds?: number;
        maxRetries?: number;
        abortSignal?: AbortSignal;
        queryParams?: Record<string, unknown>;
        headers?: Record<string, Supplier<undefined | 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.

    queryParams?: Record<string, unknown>

    Additional query string parameters to include in the request.

    headers?: Record<string, Supplier<undefined | string>>

    Additional headers to include in the request.