Returns a tibble with metadata about the specified integration on a NocoDB server from its GET /api/v2/meta/integrations/{id_integration}
API endpoint.
Usage
integration(
id_integration,
incl_config = TRUE,
hostname = pal::pkg_config_val("hostname"),
email = pal::pkg_config_val("email"),
password = pal::pkg_config_val("password"),
api_token = pal::pkg_config_val("api_token")
)
Arguments
- id_integration
character(1)
NocoDB integration identifier as returned byintegration_id()
.- incl_config
Whether or not to include the integration configuration in the result (as a separate
config
column).- 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.
- api_token
NocoDB API token. Takes precedence over
email
andpassword
if provided.
Value
A tibble.
See also
Other functions to manage NocoDB integrations:
create_integration()
,
delete_integration()
,
integration_id()
,
integrations()
,
update_integration()