HTTP Request Node

The HTTP Request node calls external APIs as part of workflow execution.


Configuration

  • Method: GET, POST, PUT, PATCH, DELETE.
  • URL: Supports templates from payload values.
  • Headers: Static or templated headers.
  • Query Params: Optional key/value parameters.
  • Body: JSON or text payload.
  • Timeout and Retry: Recommended for production APIs.

Typical Pattern

  1. Build normalized payload using transformation nodes.
  2. Send to external endpoint.
  3. Branch on HTTP status code using a Switch node.

Related Pages