Returns a tibble with metadata about all users on a NocoDB server from its
GET /api/v1/users
API endpoint.
Usage
users(
hostname = pal::pkg_config_val("hostname"),
email = pal::pkg_config_val("email", require = TRUE),
password = pal::pkg_config_val("password", require = TRUE)
)
Arguments
- hostname
NocoDB server hostname. A character scalar.
E-mail address of the NocoDB user to authenticate with.
- password
Password of the NocoDB user to authenticate with.
Value
A tibble.
Details
This API endpoint does not support authentication via API tokens.
Only the super admin user is allowed to use this API endpoint, i.e. the provided credentials must belong to them.
See also
Other functions to manage NocoDB users:
add_user()
,
base_users()
,
delete_base_user()
,
delete_user()
,
invite_base_user()
,
invite_user()
,
resend_base_user_invitation()
,
sign_up_user()
,
update_base_user()
,
update_user()
,
user_id()
,
validate_user_email()
,
whoami()