[BENCHMARK] Multiple Webhook 6¶
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 useful for performance testing, load testing, or basic webhook functionality validation.
Purpose¶
No business context provided yet — add a context.md to enrich this documentation.
How It Works¶
This is a minimal workflow with a single step:
- Webhook receives request - The workflow listens for incoming HTTP requests on the
/multiple-webhook6endpoint - Response returned - The webhook automatically returns a response to the caller (the exact response depends on n8n's default webhook behavior)
Workflow Diagram¶
graph TD
A[Webhook Trigger<br/>Path: /multiple-webhook6] --> B[End<br/>Response Returned]
Trigger¶
Webhook Trigger
- Path: /multiple-webhook6
- Method: Accepts all HTTP methods (GET, POST, PUT, DELETE, etc.)
- URL: https://your-n8n-instance.com/webhook/multiple-webhook6
The workflow activates whenever an HTTP request is made to the webhook endpoint.
Nodes Used¶
| Node Type | Node Name | Purpose |
|---|---|---|
| Webhook | Webhook | Receives incoming HTTP requests and triggers the workflow |
External Services & Credentials Required¶
This workflow doesn't require any external services or credentials. It operates entirely within n8n using the built-in webhook functionality.
Environment Variables¶
No environment variables are required for this workflow.
Data Flow¶
Input:
- HTTP request to /multiple-webhook6 endpoint
- Request can include any HTTP method, headers, query parameters, and body data
Output: - HTTP response returned to the caller - Response format depends on n8n's default webhook response behavior (typically JSON with execution details)
Error Handling¶
This workflow doesn't implement custom error handling. Any errors would be handled by n8n's default webhook error responses.
Known Limitations¶
- This is a benchmark/test workflow with minimal functionality
- No data processing or transformation occurs
- Response format is limited to n8n's default webhook response
Related Workflows¶
No related workflows specified in the context.
Setup Instructions¶
-
Import the workflow
- Copy the workflow JSON
- In n8n, go to Workflows and click "Import from JSON"
- Paste the JSON and save
-
Activate the workflow
- Click the "Active" toggle to enable the webhook
- The webhook URL will be generated automatically
-
Test the webhook
- Note the webhook URL from the Webhook node
- Send a test request using curl, Postman, or any HTTP client:
1 2 3
curl -X POST https://your-n8n-instance.com/webhook/multiple-webhook6 \ -H "Content-Type: application/json" \ -d '{"test": "data"}'
-
Monitor execution
- Check the workflow execution history to see incoming requests
- Use this for benchmarking response times and throughput
The workflow is ready to use immediately after activation with no additional configuration required.