Enable Files Trigger
enable Files Trigger.
A trigger runs an action automatically in reaction to an event in this module — part of Norbix's event-driven automation. 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.enableFilesTrigger({
triggerId: 'trg_3ebvLfuSO3DFb1wLL0Tzaf',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Files.EnableFilesTriggerAsync(new EnableFilesTrigger
{
TriggerId = "trg_3ebvLfuSO3DFb1wLL0Tzaf",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.files.enable_files_trigger(
triggerId="trg_3ebvLfuSO3DFb1wLL0Tzaf",
)In the dashboard
Manage this visually in Norbix Cloud — see Files → Triggers.
API reference
Full request and response for this endpoint: Enable Files Trigger.
Last updated