NodesNetwork
HTTP
Sends a request to an external endpoint.
Network
Use this when you need to post data to another service without writing custom integration code.
When to use it
- Send webhooks or server events.
- Forward tracking payloads to a custom endpoint.
Routing behavior
Continues through its connected downstream path when it completes successfully.
Properties
| Property | Type | Required | Details |
|---|---|---|---|
url url | string | Optional | Target URL (supports expressions) |
method method | select | Optional | HTTP method |
bodyType bodyType | select | Optional | Request body content type |
body body | json | Optional | Request body |
useAuth useAuth | boolean | Optional | Enable authentication |
authType authType | select | Optional | Authentication type |
authToken authToken | string | Optional | Authentication token or key |
useQueryParams useQueryParams | boolean | Optional | Enable query parameters |
queryParams queryParams | key-value | Optional | URL query parameters |
useHeaders useHeaders | boolean | Optional | Enable custom HTTP headers |
headers headers | key-value | Optional | Custom HTTP headers |
onError onError | select | Optional | Behavior on request failure |
Common mistakes
- Double-check the URL, method, and body format.
- Be deliberate about failure behavior so the flow reacts the way you expect.