AutomationFlowsGeneral › Rehearsal Example

Rehearsal Example

rehearsal-example. Event-driven trigger; 4 nodes.

Event trigger★★☆☆☆ complexity4 nodes
General Trigger: Event Nodes: 4 Complexity: ★★☆☆☆ Added:

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "name": "rehearsal-example",
  "nodes": [
    {
      "name": "Start",
      "type": "n8n-nodes-base.manualTrigger",
      "parameters": {}
    },
    {
      "name": "Choose Tier",
      "type": "n8n-nodes-base.if",
      "parameters": {
        "condition": "={{ $json.amount > 100 }}"
      }
    },
    {
      "name": "High Tier",
      "type": "n8n-nodes-base.set",
      "parameters": {
        "fields": [
          {
            "name": "tier",
            "value": "high"
          }
        ]
      }
    },
    {
      "name": "Standard Tier",
      "type": "n8n-nodes-base.set",
      "parameters": {
        "fields": [
          {
            "name": "tier",
            "value": "standard"
          }
        ]
      }
    }
  ],
  "connections": {
    "Start": {
      "main": [
        [
          {
            "node": "Choose Tier",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Choose Tier": {
      "main": [
        [
          {
            "node": "High Tier",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Standard Tier",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

rehearsal-example. Event-driven trigger; 4 nodes.

Source: https://github.com/syucream/s8n/blob/main/examples/rehearsal.workflow.json — original creator credit. Request a take-down →

More General workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

General

03 - Flow Control Demo (Loop) V2. Event-driven trigger; 11 nodes.

General

03 - Flow Control Demo (Loop) V2. Event-driven trigger; 11 nodes.

General

Report Examples Demo. Event-driven trigger; 7 nodes.

General

Check if a Twitch Stream is Live. Uses graphql. Event-driven trigger; 7 nodes.

GraphQL
General

Automatically prune n8n execution history. Uses n8n. Event-driven trigger; 7 nodes.

n8n