Save Scheduler Task
Save scheduled task.
A scheduled task runs a Norbix endpoint on a cron schedule, validated and gated exactly like a live call. This method creates the scheduler task and returns its id.
This method is on the Hub surface (norbix.hub.scheduler) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.scheduler.saveSchedulerTask({
name: 'orders-summary',
cron: '0 8 * * 1',
isEnabled: true,
stopOnError: true,
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Scheduler.SaveSchedulerTaskAsync(new SaveSchedulerTaskRequest
{
Name = "orders-summary",
Cron = "0 8 * * 1",
IsEnabled = true,
StopOnError = true,
});In the dashboard
Manage this visually in Norbix Cloud — see Scheduler → Tasks.
API reference
Full request and response for this endpoint: Save Scheduler Task.
Last updated