The End Success node terminates the workflow execution with a success status. It provides a way to explicitly mark a workflow as completed successfully when all required conditions are met or when the desired outcome is achieved.

Workflow Completion

Immediately stops workflow execution with success status

Success Confirmation

Provides explicit success handling for completed operations

Status Reporting

Clearly indicates workflow succeeded for monitoring and logging

Conditional Branching

Can be used in conditional flows to handle success paths

Configuration Options

Success Configuration

The End Success node doesn’t require additional URL or data configuration. It focuses on:

  • Immediate Termination: Stops workflow execution instantly
  • Success Status: Marks the entire workflow run as successful
  • Success Context: Uses the description to provide success reason
  • Cleanup: Ensures proper cleanup of resources before termination

Example Description:

Order processed successfully and confirmation email sent

Result Schema

Configure the schema of the result to get all the information you need at a glance.

{
  "additionalProperties": false,
  "properties": {
    "success": {
      "description": "Detailed explanation of the result.",
      "type": "string"
    },
    "description": {
      "description": "Whether the operation was successful.",
      "type": "boolean"
    }
  },
  "type": "object"
}

Node Settings

Terminal Node

Behavior:

  • No outgoing connections allowed
  • Immediately terminates workflow
  • Cannot be bypassed or continued
  • Final node in this execution path

Success Status

Result:

  • Workflow marked as successful
  • Execution stops immediately
  • Success logged with description
  • Triggers success notifications if configured

Use Cases