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); Copy
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);
Your QuickBase user token
QuickBase SDK v2
A TypeScript/JavaScript client for the QuickBase JSON RESTful API.
Example