Skip to main content

fused cronjob

Manage scheduled UDF runs.

fused cronjob [SUBCOMMAND] [OPTIONS]

Subcommands

SubcommandDescription
createCreate or update a cronjob for a UDF.
deleteDelete a cronjob (unschedule the UDF).
getGet a cronjob by UDF reference or cronjob UUID.
listList cronjobs for the team, or filter by UDF.
runTrigger an immediate run of a cronjob.
updateUpdate a cronjob schedule or arguments (partial updates).

fused cronjob create

Create or update a cronjob for a UDF.

fused cronjob create CANVAS UDF [OPTIONS]

Options

FlagDescription
--minute INT_LISTMinute (0-59); exactly one value. Repeat the flag and/or use comma-separated values.
--hour INT_LISTHour (0-23). Repeat the flag and/or use comma-separated values.
--day-of-month INT_LISTDay of month (1-31); omit for every day. Repeat the flag and/or use comma-separated values.
--month INT_LISTMonth (1-12); omit for every month. Repeat the flag and/or use comma-separated values.
--day-of-week INT_LISTDay of week (0=Sunday); omit for every day. Repeat the flag and/or use comma-separated values.
--udf-args TEXTJSON object of arguments passed to the UDF when the schedule runs.
--disabledDisable the schedule.
--enabledEnable the schedule.
--no-create-udfDo not call to_fused(); UDF must already be saved on the server.

fused cronjob delete

Delete a cronjob (unschedule the UDF).

fused cronjob delete [CANVAS] [UDF] [OPTIONS]

Options

FlagDescription
--idTreat the first argument as a cronjob UUID instead of CANVAS.

fused cronjob get

Get a cronjob by UDF reference or cronjob UUID.

fused cronjob get [CANVAS] [UDF] [OPTIONS]

Options

FlagDescription
--idTreat the first argument as a cronjob UUID instead of CANVAS.

fused cronjob list

List cronjobs for the team, or filter by UDF.

fused cronjob list [CANVAS] [UDF] [OPTIONS]

Options

FlagDescription
--udf-id TEXTFilter by backend UDF ID (cannot combine with CANVAS UDF).

fused cronjob run

Trigger an immediate run of a cronjob.

fused cronjob run [CANVAS] [UDF] [OPTIONS]

Options

FlagDescription
--idTreat the first argument as a cronjob UUID instead of CANVAS.

fused cronjob update

Update a cronjob schedule or arguments (partial updates).

fused cronjob update [CANVAS] [UDF] [OPTIONS]

Options

FlagDescription
--idTreat the first argument as a cronjob UUID instead of CANVAS.
--day-of-week INT_LISTDay of week (0=Sunday, 6=Saturday). Repeat the flag and/or use comma-separated values.
--month INT_LISTMonth (1-12). Repeat the flag and/or use comma-separated values.
--day-of-month INT_LISTDay of month (1-31). Repeat the flag and/or use comma-separated values.
--hour INT_LISTHour (0-23). Repeat the flag and/or use comma-separated values.
--minute INT_LISTMinute (0-59); exactly one value. Repeat the flag and/or use comma-separated values.
--udf-args TEXTJSON object of arguments passed to the UDF when the schedule runs.
--disabledDisable the schedule.
--enabledEnable the schedule.