[BENCHMARK] Multiple Webhook 4¶
A simple webhook endpoint designed for benchmarking and testing purposes. This workflow creates a single HTTP endpoint that can receive incoming requests and return responses, making it ideal for performance testing, load testing, or basic webhook functionality validation.
Purpose¶
No business context provided yet — add a context.md to enrich this documentation.
This workflow appears to be part of a benchmarking suite, providing a minimal webhook endpoint for testing HTTP request handling capabilities.
How It Works¶
- The workflow activates and listens for incoming HTTP requests on the
/multiple-webhook4endpoint - When a request is received, the webhook node processes it and returns a response
- Since this is a single-node workflow, the response is generated directly by the webhook node
Workflow Diagram¶
graph TD
A[HTTP Request] --> B[Webhook Node]
B --> C[HTTP Response]
style B fill:#e1f5fe
style A fill:#f3e5f5
style C fill:#e8f5e8
Trigger¶
Webhook Trigger
- Path: /multiple-webhook4
- Methods: All HTTP methods (GET, POST, PUT, DELETE, etc.)
- Response Mode: Last node response
The workflow is triggered by any HTTP request sent to the configured webhook URL.
Nodes Used¶
| Node Type | Node Name | Purpose |
|---|---|---|
| Webhook | Webhook | Receives HTTP requests and generates responses |
External Services & Credentials Required¶
This workflow does not require any external services or credentials. It operates as a standalone HTTP endpoint.
Environment Variables¶
No environment variables are required for this workflow.
Data Flow¶
Input: - HTTP requests with any method (GET, POST, PUT, DELETE, etc.) - Request headers, query parameters, and body data (if applicable)
Output: - HTTP response generated by the webhook node - Response includes standard webhook response format with request details
Data Structure:
1 2 3 4 5 6 7 8 | |
Error Handling¶
This workflow uses basic error handling provided by the webhook node. If the webhook receives malformed requests or encounters processing issues, it will return appropriate HTTP error codes.
No custom error handling paths are implemented in this minimal workflow.
Known Limitations¶
- Single node workflow with minimal processing capabilities
- No data validation or transformation
- No integration with external systems
- Limited to basic webhook response functionality
Related Workflows¶
Based on the naming convention, this appears to be part of a series of benchmark workflows. There may be related workflows named "Multiple Webhook 1", "Multiple Webhook 2", and "Multiple Webhook 3" for comparison testing.
Setup Instructions¶
-
Import the Workflow
- Copy the workflow JSON
- In n8n, go to Workflows → Import from JSON
- Paste the JSON and save
-
Activate the Workflow
- Open the imported workflow
- Click the "Active" toggle to enable it
- The webhook will automatically generate a URL
-
Test the Webhook
- Copy the webhook URL from the Webhook node
- Send a test request using curl, Postman, or any HTTP client:
1curl -X GET https://your-n8n-instance.com/webhook/multiple-webhook4
-
Monitor Execution
- Check the Executions tab to see incoming requests
- Review response times and success rates for benchmarking
Note: This workflow is ready to use immediately after import and activation. No additional configuration is required.