Interface N8nTriggerNodeParameters

Source
interface N8nTriggerNodeParameters {
    events?: ("update" | "activate" | "init")[];
}

Properties§

Source§

readonly events?: ("update" | "activate" | "init")[]

Specifies under which conditions an execution should happen:

  • Active Workflow Updated: Triggers when this workflow is updated
  • Instance Started: Triggers when this n8n instance is started or re-started
  • Workflow Activated: Triggers when this workflow is activated
Default: []