AI workflow guides Your workspace
Find your way forward

Triggers in Superagento

Learn to build AI agents, connect tools and
understand every workflow run.

Building/Triggers1 min read

Triggers

Every workflow starts with exactly one trigger.

TriggerFires when
WebhookA POST arrives at the workflow's generated URL. The body is available as {{trigger.body}}.
ScheduleA cron expression matches. Evaluated in UTC by the backend scheduler.
ManualSomeone presses Test run, or the API is called directly.

A webhook URL carries a secret token. Rotating it issues a new URL and immediately invalidates every previously shared one.

bash
curl -X POST \
  "$NUDGE_API/api/v1/hooks/$WORKFLOW_ID/$TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"email":"lead@example.com","plan":"pro"}'
A little help goes a long way.Your run history is a good place to find what happened at every step.
Take a closer look