[BENCHMARK] Multiple Webhook 8¶
A simple webhook endpoint workflow designed for benchmarking purposes. This workflow creates a single HTTP endpoint that can receive incoming requests and return responses, making it useful for performance testing and load testing scenarios.
Purpose¶
No business context provided yet — add a context.md to enrich this documentation.
How It Works¶
This workflow operates as a basic HTTP endpoint:
- Webhook Trigger: The workflow starts when an HTTP request is made to the
/multiple-webhook8endpoint - Response: The webhook automatically returns a response to the caller (the exact response depends on n8n's default webhook behavior)
This is a minimal workflow with just one node, making it ideal for benchmarking n8n's basic webhook performance without additional processing overhead.
Workflow Diagram¶
graph TD
A[Webhook Trigger<br/>Path: /multiple-webhook8] --> B[End<br/>Return Response]
Trigger¶
Webhook Trigger
- Path: /multiple-webhook8
- Method: All HTTP methods accepted (GET, POST, PUT, DELETE, etc.)
- Authentication: None configured
- Response Mode: Last node response
The webhook URL will be: https://your-n8n-instance.com/webhook/multiple-webhook8
Nodes Used¶
| Node Type | Node Name | Purpose |
|---|---|---|
| Webhook | Webhook | Receives HTTP requests and triggers workflow execution |
External Services & Credentials Required¶
None - This workflow operates entirely within n8n and doesn't require external service connections or credentials.
Environment Variables¶
None - This workflow doesn't use any environment variables.
Data Flow¶
Input:
- HTTP request to /multiple-webhook8 endpoint
- Request can include any headers, query parameters, or body data
Output: - HTTP response (format depends on n8n's default webhook response behavior) - Response includes execution status and any data from the webhook node
Data Processing: - No data transformation occurs in this workflow - Input data is passed through unchanged
Error Handling¶
No explicit error handling is configured in this workflow. Default n8n error behavior applies: - HTTP 500 responses for workflow execution errors - Standard n8n error logging and reporting - Workflow will stop execution on any node failures
Known Limitations¶
Since no business context is provided, limitations are based on the technical implementation: - Single webhook endpoint only - No data validation or processing - No authentication or rate limiting - Minimal logging beyond n8n defaults
Related Workflows¶
No related workflows identified from the provided context.
Setup Instructions¶
1. Import Workflow¶
- Copy the workflow JSON from this repository
- In n8n, go to Workflows → Import from JSON
- Paste the JSON and click Import
2. Configure Webhook¶
- Open the Webhook node
- Verify the path is set to
multiple-webhook8 - Adjust any webhook options if needed (authentication, response mode, etc.)
3. Activate Workflow¶
- Click the Active toggle in the top-right corner
- The webhook endpoint will become available immediately
4. Test the Endpoint¶
- Note your n8n instance URL
- Send a test request to:
https://your-n8n-instance.com/webhook/multiple-webhook8 - Verify you receive a response
- Check the workflow execution log for successful runs
5. Benchmarking Usage¶
- Use this endpoint for load testing n8n's webhook performance
- Monitor execution times and throughput
- Scale requests gradually to identify performance limits
Note: This workflow is marked as active and ready to receive requests immediately after import.