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

    Interface RateLimitInfo

    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 RateLimitInfo {
        attempt: number;
        cfRay?: string;
        httpStatus: number;
        qbApiRay?: string;
        requestUrl: string;
        retryAfter?: number;
        tid?: string;
        timestamp: Date;
    }
    Index

    Properties

    attempt: number

    Which retry attempt this was

    cfRay?: string

    Cloudflare ray ID

    httpStatus: number

    HTTP status code

    qbApiRay?: string

    QuickBase API ray ID

    requestUrl: string

    The request URL

    retryAfter?: number

    Retry-After header value (seconds)

    tid?: string

    Transaction ID

    timestamp: Date

    When the rate limit occurred