Webhook Integration
Send signed submission.created events to your own endpoint after Rooster saves a submission.
Attributes
Setup
Use the Webhook integration when you want Rooster to notify another system with a signed HTTP request after a form submission is saved.
- Open Integrations in the dashboard.
- Find Webhook in Available.
- Click Connect.
- Enter the endpoint URL that should receive events.
- Choose whether webhook payloads should include submitted field values.
- Click Save integration.
- Save the one-time signing secret shown after creation.
- Send a test event to confirm your endpoint can receive Rooster webhooks.
Production endpoints must use HTTPS and cannot point to localhost, private network addresses, link-local addresses, or cloud metadata services.
After Webhook is saved, it appears in your account's connected integrations, but it only receives submissions from websites or hosted forms where you link it.
Link Webhook To A Website Or Hosted Form
To send website submissions to Webhook:
- Open Websites.
- Open the website action menu.
- Choose Link integration or View integration.
- Click Add integration if you are viewing existing links.
- Choose Webhook from the dropdown.
- Review whether this website link should include submission details.
- Click Link integration.
The website must have a valid connected domain before Webhook can be linked.
To send hosted form submissions to Webhook:
- Open Form builder.
- Open the hosted form action menu.
- Choose Link integration or View integration.
- Click Add integration if you are viewing existing links.
- Choose Webhook from the dropdown.
- Review whether this hosted form link should include submission details.
- Click Link integration.
The hosted form must be published before Webhook can be linked.
Manage Or Remove Webhook
Open Integrations, then click Manage Webhook to change the account-level endpoint, rotate the signing secret, send a test event, review deliveries, disable delivery, or disconnect Webhook from your account.
From a website or hosted form's View integration modal, use the edit icon to change Webhook settings only for that source. Use the delete icon to remove Webhook from that source only.
Events
Rooster currently sends one submission event:
submission.created
The event is sent after the submission has been persisted. A webhook delivery failure does not block the visitor's form submission.
When Include submission details in webhook payload is off, Rooster sends metadata only. When it is on, Rooster includes submitted field values and ignored file-field metadata when available.
Example payload:
Signatures
Webhook deliveries include these headers:
Content-Type: application/jsonUser-Agent: Rooster-Webhooks/1.0X-Rooster-EventX-Rooster-DeliveryX-Rooster-TimestampX-Rooster-Signature
The signature uses HMAC-SHA256 over:
The signature header is formatted as:
Rotate the signing secret from the Webhook settings dialog if the current secret is exposed. New deliveries use the new secret; historical delivery logs are not rewritten.
Health And Retries
Rooster records delivery attempts, response status codes, response time, short response previews, and failure reasons. Retryable failures are scheduled again with backoff. Repeated failures mark the integration unhealthy and can disable delivery until you update the endpoint or send a successful test event.
Use Send test in the Webhook settings dialog after creating, updating, or repairing an endpoint.
Compatible Apps
The Webhook integration works with systems that can receive signed inbound HTTP POST requests, including:
- Custom apps and API servers
- Serverless functions on AWS Lambda, Cloudflare Workers, Vercel, or Netlify
- Automation platforms such as Zapier, Make, Pipedream, and n8n
- CRMs or help desks that support inbound webhooks
- Internal data pipelines and queue gateways
- Notification relays for Slack, Discord, Telegram, or Microsoft Teams
- Spreadsheet or database automation tools that expose webhook URLs
