Get Database Integration
Gets integration by specified Id.
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 returns a single database integration by id.
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.getDatabaseIntegration({
id: 'int_4kX9mQvR2tYw7ZbC1dFgHj',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Database.GetDatabaseIntegrationAsync(new GetDatabaseIntegration
{
Id = "int_4kX9mQvR2tYw7ZbC1dFgHj",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.database.get_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: Get Database Integration.
Last updated