Learn R Programming

qbr (version 1.3.0)

delete_records: Delete records

Description

Delete one or more records from a table.

Usage

delete_records(subdomain, auth, from, where, agent = NULL)

Value

Named integer vector

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).

from

Character vector. Identifier of the target table.

where

Character vector. Condition(s) which target one or more records for deletion. Use the Quickbase query language to construct your condition(s).

agent

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

Examples

Run this code
if (FALSE) {
  delete_records(subdomain = "abc",
             auth = keyring::key_get("qb_example"),
             from = "bn9d8iesz",
             where = "{6.EX.'105'}")
}

Run the code above in your browser using DataLab