Webhook Response Node

The Webhook Response node is used to send a reply back to the service or application that triggered your Workflow through a Webhook Request.


πŸ› οΈ How It Works

  • A Webhook Request Node starts the Workflow when it receives an external call.

  • The Webhook Response Node closes the loop, sending a response back to the caller.

  • Without this node, the external service might not receive any confirmation.


βš™οΈ Configuration Options

  • Status Code β†’ define the HTTP status code (e.g., 200 OK, 201 Created, 400 Bad Request).

  • Response Body β†’ optional data to return in the response (JSON, text, etc.).

  • Headers β†’ add custom headers if required by the external system.


πŸ“Œ Example Use Cases

  • Confirm to a form that the lead was received successfully (200 OK).

  • Return generated data, like an ID or token, to the external system.

  • Send error messages (400, 404, etc.) if the request was invalid.

Last updated