Get group information from the Posit Connect server
get_groups(src, page_size = 500, prefix = NULL, limit = Inf)
A tibble with the following columns:
guid
: The unique identifier of the group
name
: The group name
owner_guid
: The group owner's unique identifier. When using LDAP or
Proxied authentication with group provisioning enabled this property
will always be null.
Please see https://docs.posit.co/connect/api/#getGroups for more information.
if (FALSE) { # \dontrun{
library(connectapi)
client <- connect()
# get all groups
get_groups(client, limit = Inf)
} # }