Delete Database Integration
Delete integration for particular project.
An integration connects an external provider to this module. Configure the provider and its secrets in the dashboard; the API lets you list, create or update, enable, disable, set a default, and test integrations. This method removes the database integration. This action cannot be undone.
This action is destructive or irreversible. Make sure you target the right item and confirm before running it.
This method is on the Hub surface (norbix.hub.database) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.database.deleteDatabaseIntegration({
id: 'int_4kX9mQvR2tYw7ZbC1dFgHj',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Database.DeleteDatabaseIntegrationAsync(new DeleteDatabaseIntegrationRequest
{
Id = "int_4kX9mQvR2tYw7ZbC1dFgHj",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.database.delete_database_integration(
id="int_4kX9mQvR2tYw7ZbC1dFgHj",
)In the dashboard
Manage this visually in Norbix Cloud — see Database → Integrations.
API reference
Full request and response for this endpoint: Delete Database Integration.
Last updated