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

    Interface RequestOptions

    interface RequestOptions {
        timeoutInSeconds?: number;
        maxRetries?: number;
        abortSignal?: AbortSignal;
        queryParams?: Record<string, unknown>;
        headers?: Record<string, Supplier<string | null | undefined>>;
    }

    Hierarchy (View Summary)

    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<string | null | undefined>>

    Additional headers to include in the request.