Returns a tibble with metadata about all users on a NocoDB server from its
GET /api/v1/users
API endpoint.
Usage
users(
origin = pal::pkg_config_val("origin"),
email = pal::pkg_config_val("email", require = TRUE),
password = pal::pkg_config_val("password", require = TRUE)
)
Arguments
- origin
character(1)
NocoDB server origin.character(1)
E-mail address of the NocoDB user to authenticate with.- password
character(1)
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()