The Webhook Response node is used to send a reply back to the service or application that triggered your Workflow through a Webhook Request.
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.
Status Code β define the HTTP status code (e.g., 200 OK, 201 Created, 400 Bad Request).
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.
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.
400
404
Last updated 3 months ago