Disable Payments Trigger
Disable payments trigger.
A trigger runs an action automatically in reaction to an event in this module — part of Norbix's event-driven automation. This method disables the module for your project.
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.payments) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.payments.disablePaymentsTrigger({
triggerId: 'trg_3ebvLfuSO3DFb1wLL0Tzaf',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Payments.DisablePaymentsTriggerAsync(new DisablePaymentsTrigger
{
TriggerId = "trg_3ebvLfuSO3DFb1wLL0Tzaf",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.payments.disable_payments_trigger(
triggerId="trg_3ebvLfuSO3DFb1wLL0Tzaf",
)In the dashboard
Manage this visually in Norbix Cloud — see Payments → Triggers.
API reference
Full request and response for this endpoint: Disable Payments Trigger.
Last updated