Skip to main content
Entry point of the workflow. Automatically created with new workflows.

Configuration

No configuration required.

Workflow library example

import { START, Workflow } from "@kapso/workflows";

const workflow = new Workflow("welcome-flow", {
  name: "Welcome Flow"
});

workflow.addNode(START, {
  position: { x: 100, y: 100 }
});

export default workflow;

Behavior

  • Always the first node in a workflow
  • Automatically advances to the next connected node
  • Cannot be deleted
  • Only one Start node per workflow

Usage

Connect the Start node to your first action: The Start node triggers when:
  • User sends first message (WhatsApp trigger)
  • API call initiates workflow (API trigger)