delete_records {qbr} | R Documentation |
Delete records
Description
Delete one or more records from a table.
Usage
delete_records(subdomain, auth, from, where, 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). |
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. |
Value
Named integer vector
Examples
## Not run:
delete_records(subdomain = "abc",
auth = keyring::key_get("qb_example"),
from = "bn9d8iesz",
where = "{6.EX.'105'}")
## End(Not run)
[Package qbr version 1.2.3 Index]