Enable Files Integration
enable Files Integration.
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 enables the module for your project.
This method is on the Hub surface (norbix.hub.files) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.files.enableFilesIntegration({
id: 'int_4kX9mQvR2tYw7ZbC1dFgHj',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Files.EnableFilesIntegrationAsync(new EnableFilesIntegrationRequest
{
Id = "int_4kX9mQvR2tYw7ZbC1dFgHj",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.files.enable_files_integration(
id="int_4kX9mQvR2tYw7ZbC1dFgHj",
)In the dashboard
Manage this visually in Norbix Cloud — see Files → Integrations.
API reference
Full request and response for this endpoint: Enable Files Integration.
Last updated