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

    Interface SsoTokenAuthConfig

    QuickBase SDK v2

    A TypeScript/JavaScript client for the QuickBase JSON RESTful API.

    import { createClient } from 'quickbase-js';

    const client = createClient({
    realm: 'mycompany',
    auth: {
    type: 'user-token',
    userToken: 'your-user-token',
    },
    });

    const app = await client.getApp({ appId: 'bpqe82s1' });
    console.log(app.name);
    interface SsoTokenAuthConfig {
        samlToken: string;
        type: "sso";
    }
    Index

    Properties

    Properties

    samlToken: string

    SAML token for SSO authentication

    type: "sso"