View source: R/redcap-users-export.R
redcap_users_export | R Documentation |
List users authorized for a project.
redcap_users_export(
redcap_uri,
token,
verbose = TRUE,
config_options = NULL,
handle_httr = NULL
)
redcap_uri |
The uri/url of the REDCap server typically formatted as "https://server.org/apps/redcap/api/". Required. |
token |
The user-specific string that serves as the password for a project. Required. |
verbose |
A boolean value indicating if |
config_options |
A list of options passed to |
handle_httr |
The value passed to the |
data_user
: A tibble::tibble()
of all users associated with the project.
One row represents one user.
data_user_form
: A tibble::tibble()
of permissions for users and forms.
One row represents a unique user-by-form combination.
success
: A boolean value indicating if the operation was apparently
successful.
status_codes
: A collection of
http status codes,
separated by semicolons. There is one code for each batch attempted.
outcome_messages
: A collection of human readable strings indicating the
operations' semicolons. There is one code for each batch attempted. In an
unsuccessful operation, it should contain diagnostic information.
elapsed_seconds
: The duration of the function.
Documentation in REDCap 8.4.0
This method allows you to export the list of users for a project, including their user privileges and also email address, first name, and last name. Note: If the user has been assigned to a user role, it will return the user with the role's defined privileges.
## Not run:
uri <- "https://bbmc.ouhsc.edu/redcap/api/"
token <- "06DEFB601F9B46847DAA9DF0CFA951B4"
result <- REDCapR::redcap_users_export(redcap_uri=uri, token=token)
result$data_user
result$data_user_form
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.