Skip to contents

List Owners of a Databrary Volume.

Usage

list_volume_owners(vol_id = 1, vb = options::opt("vb"), rq = NULL)

Arguments

vol_id

Selected volume number. Default is volume 1.

vb

Show verbose messages. (Defaults to FALSE, overwritable using option 'databraryr.vb' or environment variable 'R_DATABRARYR_VB')

rq

An httr2 request object. If NULL (the default) a request will be generated, but this will only permit public information to be returned.

Value

A data frame with information about a volume's owner(s).

Examples

# \donttest{
list_volume_owners() # Lists information about the owners of volume 1.
#> # A tibble: 3 × 2
#>   owner_name       party_id
#>   <chr>               <int>
#> 1 Adolph, Karen           5
#> 2 Gilmore, Rick O.        6
#> 3 Staff                 308
# }