HTTP Requests
Connect to any external API by making HTTP requests from your workflows.
HTTP Request Node
The HTTP Request node lets you make calls to any REST API from a workflow. It supports all standard HTTP methods and allows you to configure headers, parameters and request body with dynamic flow data.
Configuration
| Field | Description |
|---|---|
| URL | Endpoint de la API. Soporta variables dinamicas. |
| Metodo | GET, POST, PUT, PATCH o DELETE. |
| Headers | Cabeceras HTTP (Authorization, Content-Type, etc.). |
| Body | Cuerpo de la peticion en formato JSON. Soporta variables. |
| Query Params | Parametros de URL opcionales. |
Using the response
The API response (status code, headers and body) is available as a variable in subsequent workflow nodes. You can use condition nodes to handle different response codes (success, error, etc.) and transform the received data with transformation nodes.