List active MotherDuck accounts
list_md_active_accounts.RdRetrieves a list of active MotherDuck accounts available to the authenticated user, returning the results as a tidy tibble.
Value
A tibble with two columns:
account_settings: configuration keys for the active accounts.account_values: corresponding configuration values.
Details
This function queries the MotherDuck REST API endpoint
(https://api.motherduck.com/v1/active_accounts) using the provided or
environment-resolved authentication token.
The current user name is also displayed via show_current_user().
Examples
if (FALSE) { # \dontrun{
# Retrieve active accounts for the authenticated user
accounts_tbl <- list_md_active_accounts()
print(accounts_tbl)
} # }