QuickBase JS SDK v2 - v2.2.2
    Preparing search index...

    Interface XmlClientOptions

    Options for creating an XML client

    interface XmlClientOptions {
        appToken?: string;
        fetchApi?: (
            input: string | URL | Request,
            init?: RequestInit,
        ) => Promise<Response>;
        readOnly?: boolean;
        schema?: ResolvedSchema;
    }
    Index

    Properties

    appToken?: string

    App token for apps that require application tokens (XML API only)

    fetchApi?: (
        input: string | URL | Request,
        init?: RequestInit,
    ) => Promise<Response>

    Custom fetch function for direct HTTP requests (e.g., GetAppDTMInfo which bypasses doXml to avoid sending auth tokens). Defaults to globalThis.fetch.

    readOnly?: boolean

    Block all write operations (read-only mode)

    Schema for table/field alias resolution (typically inherited from main client)