delete_fields: Delete field(s) in a table

View source: R/qb_fields.R

delete_fieldsR Documentation

Delete field(s) in a table

Description

Delete a list of one or more fields in a table.

Usage

delete_fields(subdomain, auth, table_id, field_ids, agent = NULL)

Arguments

subdomain

Character vector with one element. Found at the beginning of the Quickbase URL. Realm specific.

auth

Character vector with one element. The Quickbase authentication scheme you are using to authenticate the request (e.g., user token).

table_id

Character vector with one element. Found in the URL of a Quickbase table.

field_ids

Character or numeric vector. Field identifier for fields to delete.

agent

Optional. Character vector with one element. Describes user/agent making API call.

Value

A tibble with the status of the fields passed to field_ids.

Examples

## Not run: 
   delete_fields(subdomain = "abc",
              auth = keyring::key_get("qb_example"),
              table_id = "bsf5hphe5",
              field_ids = c(40:43, 45))

## End(Not run)

qbr documentation built on April 4, 2025, 2:18 a.m.