A Sentway webhook posts a signed JSON body to a URL of your choosing when a visitor submits a form or passes a gate. Webhooks are how a Sentway site feeds a CRM, a spreadsheet, an automation tool or an internal service without anybody copying data by hand.
Add the destination URL in the dashboard. Sentway generates a signing secret at creation time and shows it once. The URL must be a public HTTPS endpoint: Sentway resolves the hostname before every delivery and refuses private, loopback, link-local and cloud metadata addresses, at creation time and again on each send.
Compute HMAC-SHA256 over the exact raw body, hex encode it, and compare against the signature header with a constant-time comparison. Parse the JSON only after the comparison passes.
Webhooks are a Pro feature. Submissions are still captured and stored on the free tier; they are simply not delivered outward until the account is on Pro.