Type alias QuickBaseRequestUpsert

QuickBaseRequestUpsert: QuickBaseRequest & {
    data?: Record<string, {
        value: any;
    }>[];
    fieldsToReturn?: number[];
    mergeFieldId?: number;
    tableId: string;
}

Type declaration

  • Optional data?: Record<string, {
        value: any;
    }>[]

    Record data array, where each record contains key-value mappings of fields to be defined/updated and their values.

  • Optional fieldsToReturn?: number[]

    Specify an array of field ids that will return data for any updates or added record. Record ID (FID 3) is always returned if any field ID is requested.

  • Optional mergeFieldId?: number

    The merge field id.

  • tableId: string

    The table identifier.