Skip to contents

Deletes an integration on a NocoDB server via its DELETE /api/v2/meta/integrations API endpoint.

Usage

delete_integration(
  id_integration,
  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 by integration_id().

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.

api_token

NocoDB API token. Takes precedence over email and password if provided.

Value

id_integration, invisibly.

See also

Other functions to manage NocoDB integrations: create_integration(), integration(), integration_id(), integrations(), update_integration()