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

    Interface FieldInfo

    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 FieldInfo {
        id: number;
        label: string;
        type: string;
    }
    Index

    Properties

    Properties

    id: number
    label: string
    type: string