Fetch
Fetch: Fetches data from an API endpoint using GET method only.
Human-readable name of the node
"Fetch user data"
"httpapi_fetch"HTTP method to use. Only GET is supported for fetch operations.
"GET"Endpoint URL to fetch data from.
"https://api.example.com/data"
Description of what this node does
List of headers as key-value pairs. You can add variables in JSONNET format. Eg. "Bearer"+data["$tenant"].api_key
List of query parameters as key-value pairs. You can add variables in JSONNET format. Eg. data["$recipient"].id
Optional key to store the response of API call. If not provided, the response will be appended at the root of the workflow payload. It's recommended to provide a unique key here to avoid overwriting existing data.