get_group_members {connectapi}R Documentation

Get users within a specific group

Description

Get users within a specific group

Usage

get_group_members(src, guid)

Arguments

src

The source object

guid

A group GUID identifier

Details

Please see https://docs.posit.co/connect/api/#getGroupMembers for more information

Value

A tibble with the following columns:

Examples

## Not run: 
library(connectapi)
client <- connect()

# get the first 20 groups
groups <- get_groups(client)

group_guid <- groups$guid[1]

get_group_members(client, guid = group_guid)

## End(Not run)


[Package connectapi version 0.1.3.1 Index]