Skip to main content

Http Request

Sends an HTTP Request

Common Properties

  • Name - The custom name of the node.
  • Color - The custom color of the node.
  • Delay Before (sec) - Waits in seconds before executing the node.
  • Delay After (sec) - Waits in seconds after executing node.
  • Continue On Error - Automation will continue regardless of any error. The default value is false.
info

If the ContinueOnError property is true, no error is caught when the project is executed even if the Catch node is used.

Input

  • Request - The HTTP Request body, can be a JSON, XML or Text.

Output

  • Response - HTTP Response
  • Headers - HTTP Response Headers
  • Cookies - HTTP Response Cookies
  • Status Code - HTTP Response Status Code

Options

  • URL - URL of the HTTP endpoint to call.
  • Method - HTTP method to use when making the request.
  • Authentication - Authentication type to use when making the request.
  • Credentials - Credentials to use when making the request.
  • Timeout - Time to wait for the request to complete, in seconds.
  • Insecure Skip Verify - If set to true, the request will bypass SSL certificate verification. This is not recommended for production environments due to security concerns.
  • Encode as Base64 - If true, the request payload will be encoded as Base64. Useful when sending data that requires Base64 encoding.
  • Proxy Settings - Determines if a proxy should be used for the request and if so, how it should be configured.
  • Proxy Addres - The address of the proxy server, if a proxy is to be used.
  • Proxy Credentials - Credentials used when the chosen proxy authentication method requires them.