get_users {connectapi}R Documentation

Get user information from the Posit Connect server

Description

Get user information from the Posit Connect server

Usage

get_users(src, page_size = 20, prefix = NULL, limit = 25)

Arguments

src

The source object

page_size

the number of records to return per page (max 500)

prefix

Filters users by prefix (username, first name, or last name). The filter is case insensitive.

limit

The max number of records to return

Details

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

Value

A tibble with the following columns:

Examples

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

# get all users
get_users(client, limit = Inf)

## End(Not run)


[Package connectapi version 0.1.3.1 Index]