Skip to main content
Version: Current

HTTP

Mode: Streaming Mode: Request-Response

Description

HTTP component allows to perform a HTTP call.

Parameters and configuration

Parameter names follow standard HTTP terminology. If unsure, refer to an HTTP reference such as MDN Web Docs.”

NameDescription
URLThe target URL for the request. The URL should contain scheme - typically http or https.
HTTP Methodthe HTTP verb to use: GET, POST, PUT, DELETE, etc
BodyThe request body. Optional for methods like POST or PUT. Can be a raw expression or structured JSON.
Output variable nameThe name of the variable that will hold the HTTP response.

Advanced parameters

NameDescription
Path SegmentsAdditional segments to append to the (base) URL. Each entry will be URL-encoded and joined with "/".
Query ParametersKey-value pairs added as query parameters to the URL. Corresponds to the query string ?key=value&....
HeadersHTTP request headers. Often used for content types, authentication, or custom metadata.
Body TypeDefines how the body content is serialized.
Error StrategyDetermines when the HTTP response is considered successful