For the complete documentation index, see llms.txt. This page is also available as Markdown.

Delete Files Trigger

delete 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 removes the files trigger. This action cannot be undone.

This method is on the Hub surface (norbix.hub.files) β€” call it from admin tooling or IaC.

These examples assume the SDK is installed and your credentials are set as environment variables β€” each client reads them automatically, so the constructors below take no arguments. See Install a Norbix SDK.

import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();

const result = await norbix.hub.files.deleteFilesTrigger({
  triggerId: 'trg_3ebvLfuSO3DFb1wLL0Tzaf',
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Files.DeleteFilesTriggerAsync(new DeleteFilesTrigger
{
    TriggerId = "trg_3ebvLfuSO3DFb1wLL0Tzaf",
});
from norbix_python import NorbixHub

norbix = NorbixHub()

result = norbix.files.delete_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: Delete Files Trigger.

Last updated