Trigger nodes are the starting point of every workflow. n8n offers several categories of triggers to handle virtually any use case.
beginner
Chapter 4: n8n Nodes Deep Dive1. Trigger Nodes
Deep dive into trigger node types and configuration.
20m Lesson 1 of 6
Code Examples
Webhook Trigger — Receiving JSON Data
json
// POST to your webhook URL with this body:
{
"event": "order.created",
"data": {
"order_id": "ORD-123",
"customer_email": "jane@example.com",
"total": 99.99
}
}
// Access in next node:
// {{ $json.body.data.order_id }}Pro Tips
- 💡Webhook triggers support both test and production URLs — use test URLs during development
Comprehension Quiz
Answer 2 of 2 correctly to unlock lesson completion.
1. What is a polling trigger?
2. Which URL type should you use during development?
Pass the quiz above to unlock lesson completion