Sends an HTTP POST request to an external URL with a JSON payload. Designed for fire-and-forget outbound notifications to third-party services, internal systems, or other automation platforms.
webhook_notificationThe Webhook Notification node is a lightweight way to push data from Flusso to any external system that accepts HTTP POST requests. It sends a JSON body and optionally includes custom headers (useful for authentication tokens or content-type overrides).
Unlike the HTTP Request node, Webhook Notification is purpose-built for outbound notifications. It does not parse or process the response body โ if you need to read the response and use it in subsequent steps, use the HTTP Request node instead.
| Use case | Best node |
|---|---|
| Notify a service and move on (fire-and-forget) | Webhook Notification |
| Call an API and use the response in later steps | HTTP Request |
| Platform-specific webhooks (Slack, Discord) | Dedicated messaging nodes |
| Field | Required | Description |
|---|---|---|
| URL | Required | The target webhook URL to POST to. Supports {{ variable }}. |
| Payload | Required | JSON payload to include in the request body. Supports {{ variable }} references anywhere in the JSON. |
| Headers | Optional | Custom HTTP request headers as key-value pairs. Use for authentication tokens or custom content types. Example: Authorization: Bearer my_token. |
| Timeout | Optional | Request timeout in seconds. If the external server does not respond within this time the step fails. Default: 10 seconds. |
| Field | Type | Description |
|---|---|---|
status | integer | The HTTP response status code returned by the external server (e.g. 200, 201, 404). |
ok | boolean | true if the status code is in the 2xx range. |
response_body | string | The raw response body text returned by the server. Available for logging or debugging purposes. |
Notify an internal operations system whenever a new customer record is created. The payload includes the customer name and ID resolved from an earlier step.
ok output in a subsequent Logic Gate node to branch on success or failure.