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 →
{
"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
}
]
]
}
}
}
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 →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
03 - Flow Control Demo (Loop) V2. Event-driven trigger; 11 nodes.
03 - Flow Control Demo (Loop) V2. Event-driven trigger; 11 nodes.
Report Examples Demo. Event-driven trigger; 7 nodes.
Check if a Twitch Stream is Live. Uses graphql. Event-driven trigger; 7 nodes.
Automatically prune n8n execution history. Uses n8n. Event-driven trigger; 7 nodes.