Webhook intake with a clean boundary

Receive an event, pass it through a visible boundary, and log the accepted message.

What the workflow does

Receive an event, pass it through a visible boundary, and log the accepted message.

Graph

  1. receive uses flow.webhook.
  2. boundary uses flow.wait.
  3. log uses console.log.

Why this boundary works

Every node has one visible job, and the edges carry only the data needed by the next step. Replace any native node after import when your production contract needs stricter validation.

Before production

Bind the declared permission, validate the incoming payload, add an idempotency key, and choose a terminal error path.

Try it in Octonode

Use the Community catalog as a starting point, then keep the imported copy small enough to understand in one sitting.