Returns a tibble with metadata about all API tokens the authenticating user has access to on a NocoDB server from its
GET /api/v1/tokens
API endpoint.
Usage
api_tokens(
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.
See also
Other functions to manage NocoDB API tokens:
create_api_token()
,
delete_api_token()
Other functions to manage NocoDB authentication:
assert_super_admin()
,
create_api_token()
,
delete_api_token()
,
is_signed_in()
,
is_super_admin()
,
refresh_sign_in()
,
req_auth()
,
sign_in()
,
sign_out()
,
sign_up_user()