Returns a tibble with metadata about all configured integrations on a NocoDB server from its GET /api/v2/meta/integrations API endpoint.
Usage
integrations(
type = NULL,
id_base = NULL,
incl_config = TRUE,
decode_config = TRUE,
origin = funky::config_val("origin"),
email = funky::config_val("email"),
password = funky::config_val("password"),
api_token = funky::config_val("api_token")
)Arguments
- type
character(1)
Optional integration type to limit the results to. One of"database".- id_base
character(1)
Optional NocoDB base identifier (as returned bybase_id()) to limit the results to.- incl_config
logical(1)
Whether or not to include the integration configuration in the result.- decode_config
logical(1)
Whether or not to decode the integration configuration in the result. IfFALSE, the whole configuration is returned as a single Base64-encoded and encryptedconfigcolumn, otherwise it is returned as multiple clear-textconfig.*columns. Only relevant ifincl_config = TRUE.- 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.- api_token
character(1)
NocoDB API token. Takes precedence overemailandpasswordif provided.
Value
A tibble.
See also
Other functions to manage NocoDB integrations:
create_integration(),
delete_integration(),
integration(),
integration_id(),
update_integration()