Skip to main content

Http In

Listen for incoming HTTP requests.

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 ContinueOnError property is true, no error is caught when the project is executed even if Catch node is used.

Output

  • Body - The body of the incoming HTTP request.
  • Headers - The headers of the incoming HTTP request.
  • Cookies - The cookies of the incoming HTTP request.
  • Query Params - The query parameters of the incoming HTTP request.
  • Path Params - The path parameters of the incoming HTTP request.

Options

  • Method - The HTTP method used for the incoming request. Possible values: GET, POST, PUT, DELETE, PATCH.
  • Endpoint - The endpoint that is being listened for incoming requests.
  • IP - The IP address to bind to.
  • Port - The port to listen on.

The HTTP In node listens for incoming HTTP requests on the specified endpoint. The output properties provide information about the incoming HTTP request, such as the body, headers, cookies, query parameters, and path parameters. The options properties specify the HTTP method, endpoint, IP address, and port that is being listened on.