Type alias QuickBaseRequestRunFormula

QuickBaseRequestRunFormula: QuickBaseRequest & {
    formula: string;
    rid?: number;
    tableId: string;
}

Type declaration

  • formula: string

    The formula to run. This must be a valid Quickbase formula.

  • Optional rid?: number

    The record ID to run the formula against. Only necessary for formulas that are run in the context of a record. For example, the formula User() does not need a record ID.

  • tableId: string

    The unique identifier (dbid) of the table.