Skip to content

[BENCHMARK] Multiple Webhook 9

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 workflow operates as a straightforward webhook receiver:

  1. Incoming Request: The workflow listens for HTTP requests at the /multiple-webhook9 endpoint
  2. Response: Returns the received data back to the caller (since no additional processing nodes are connected)

The workflow is currently active and ready to receive requests.

Workflow Diagram

graph TD
    A[Webhook Trigger<br/>Path: /multiple-webhook9] --> B[End<br/>Return Response]

Trigger

Webhook Trigger - Path: /multiple-webhook9 - Method: Accepts all HTTP methods (GET, POST, PUT, DELETE, etc.) - Response Mode: Returns data from the last node (in this case, the webhook itself)

The webhook URL will be: https://your-n8n-instance.com/webhook/multiple-webhook9

Nodes Used

Node Type Node Name Purpose
Webhook Webhook Receives HTTP requests and triggers workflow execution

External Services & Credentials Required

This workflow does not 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 data (headers, body, query parameters, etc.) - Request method and path information

Output: - Returns the same data that was received in the request - Response format depends on the incoming request structure

Example Request:

1
2
3
curl -X POST https://your-n8n-instance.com/webhook/multiple-webhook9 \
  -H "Content-Type: application/json" \
  -d '{"test": "data"}'

Example Response:

1
2
3
{
  "test": "data"
}

Error Handling

This workflow does not implement specific error handling mechanisms. Standard n8n webhook error responses will apply: - Invalid requests return appropriate HTTP status codes - Server errors return 500-level responses

Known Limitations

  • No data processing or transformation occurs
  • No validation of incoming data
  • Single endpoint only
  • No authentication or authorization mechanisms

No related workflows identified from the provided context.

Setup Instructions

  1. Import the Workflow:

    • Copy the workflow JSON
    • In n8n, go to Workflows → Import from JSON
    • Paste the JSON and save
  2. Activate the Workflow:

    • Click the "Active" toggle to enable the webhook
    • The workflow is already configured as active
  3. Test the Webhook:

    • Note the webhook URL from the Webhook node
    • Send a test request using curl, Postman, or any HTTP client
    • Verify you receive the expected response
  4. Monitor Usage:

    • Check the workflow execution history to see incoming requests
    • Use for benchmarking by sending multiple concurrent requests

No additional configuration is required as this is a basic webhook setup without external dependencies.