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

    Interface XmlCaller

    Minimal interface for making XML API calls. This interface avoids circular dependencies between the xml package and the main client.

    interface XmlCaller {
        doXml(dbid: string, action: string, body: string): Promise<string>;
        realm(): string;
    }
    Index

    Methods

    Methods

    • Execute an XML API request

      Parameters

      • dbid: string

        The database ID to make the request against

      • action: string

        The QUICKBASE-ACTION header value (e.g., "API_GetRoleInfo")

      • body: string

        The XML request body (wrapped in tags)

      Returns Promise<string>

      The raw XML response body as a string

    • Get the QuickBase realm name (e.g., "mycompany")

      Returns string