Skip to contents

Deletes the specified API token on a NocoDB server via its DELETE /api/v1/tokens/{api_token} API endpoint.

Usage

delete_api_token(
  api_token,
  hostname = pal::pkg_config_val("hostname"),
  email = pal::pkg_config_val("email", require = TRUE),
  password = pal::pkg_config_val("password", require = TRUE)
)

Arguments

api_token

NocoDB API token to delete.

hostname

NocoDB server hostname. A character scalar.

email

E-mail address of the NocoDB user to authenticate with.

password

Password of the NocoDB user to authenticate with.

Value

api_token, invisibly.

Details

This API endpoint does not support authentication via API tokens.

See also

Other functions to manage NocoDB API tokens: api_tokens(), create_api_token()

Other functions to manage NocoDB authentication: api_tokens(), assert_super_admin(), create_api_token(), is_signed_in(), is_super_admin(), refresh_sign_in(), req_auth(), sign_in(), sign_out(), sign_up_user()