Node referenceHTTP & Integration
HTTP_REQUEST
Make an outbound HTTP request.
What it does
Make an outbound HTTP request.
Inputs & outputs
| Input handle |
|---|
| url |
| body |
| Output handle |
|---|
| response |
| status |
Configuration
| Name | Type | Required |
|---|---|---|
| url | string | Yes |
| method | 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | Yes |
Example
Example
Scenario: A Workflow notifies an external ticketing system after a form is submitted.
Configure the node with method: POST and url: https://helpdesk.example.com/api/tickets. Pass a JSON body by wiring upstream values into the body input port — for example, {"subject": "{{formField_subject}}", "description": "{{formField_body}}"}. The executor forwards the body and any headers or queryParams provided upstream, then returns statusCode and response on the output ports so downstream nodes can branch on success or failure.