run_webhook
Send HTTP requests to trigger n8n workflows via their webhook nodes. Specify method, payload, and headers to activate a workflow's webhook endpoint.
Instructions
Trigger a workflow through its Webhook node. Calls {instance}/webhook/{path} (or /webhook-test/{path} with test=true, which requires the workflow open in 'Listen for test event' mode). In queue mode the call returns according to the webhook's response mode.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Webhook path as configured in the Webhook node (without /webhook/ prefix) | |
| method | No | HTTP method the Webhook node expects | POST |
| payload | No | JSON body to send (POST/PUT/DELETE — not allowed with GET) | |
| headers | No | Extra HTTP headers (e.g. webhook auth) | |
| test | No | Call the test URL (/webhook-test/) instead of production |