Get group information from the Posit Connect server
Arguments
- src
The source object.
- page_size
The number of records to return per page (max 500).
- prefix
Filters groups by prefix (group name). The filter is case insensitive.
- limit
The number of groups to retrieve before paging stops.
limit
will be ignored isprefix
is notNULL
. To limit results whenprefix
is notNULL
, changepage_size
.
Value
A tibble with the following columns:
guid
: The unique identifier of the groupname
: The group nameowner_guid
: The group owner's unique identifier. When using LDAP or Proxied authentication with group provisioning enabled this property will always be null.
Examples
if (FALSE) { # \dontrun{
library(connectapi)
client <- connect()
# get all groups
get_groups(client, limit = Inf)
} # }