Starts a workflow when an HTTP request arrives at your Nodlyn webhook endpoint. Payload body and headers become the initial pipeline data.
When to use
- Integrate SaaS webhooks (Stripe, GitHub, HubSpot).
- Receive alerts from monitoring systems.
- Custom ingress from your own apps via POST.
Properties
| Property | Type | Description |
|---|---|---|
| Webhook Token | text | Secret path segment. URL: /api/webhooks/{token}. Required. |
| Allowed Method | select | POST (default), GET, or ANY. |
Outputs
Incoming request body (JSON object when parseable), headers, method, and query parameters.
Notes
- Workflow must be Active for the webhook to accept traffic.
- Use HTTPS in production; rotate tokens if exposed.
- Pair with Condition to validate signatures or payload shape.
See also
- HTTP Request (outbound calls)
- Workflow Lifecycle