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

    Interface XmlExecutor

    Interface for objects that can execute XML API requests. Used to adapt the main QuickBase client for XML API calls.

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

    Properties

    Methods

    Properties

    realm: string

    Get the realm name

    Methods

    • Execute an XML API request

      Parameters

      • dbid: string

        The database ID

      • action: string

        The QUICKBASE-ACTION header value

      • body: string

        The XML request body

      Returns Promise<string>

      The raw XML response body