List members of a specific group

gl_list_group_members(group, ...)

Arguments

group

The ID or URL-encoded path of the group

...

passed on to gitlab() API call for "groups"

Value

A tibble with the group members information

Examples

if (FALSE) {
set_gitlab_connection(
  gitlab_url = "https://gitlab.com",
  private_token = Sys.getenv("GITLAB_COM_TOKEN")
)
gl_list_group_members(group = "<<your-group-id>>")
}