Use cases
- Store new feedback items directly in your own database.
- Capture a visitor’s email address the moment they set it.
- Trigger a Slack message or Zapier workflow when a user votes, comments, or subscribes to a suggestion.
- Sync changelog publishes to an external CMS or mailing list.
1
Create a public HTTP endpoint
Set up a server endpoint that accepts
POST requests and returns a 2xx HTTP status to acknowledge receipt.Secure your endpointAppend a secret key as a GET parameter to your endpoint URL, then validate the parameter server-side before processing the payload:Sleekplan does not sign webhook payloads with an HMAC signature. Using a secret GET parameter is the recommended way to verify that requests originate from Sleekplan.
2
Register the webhook
- Open your product Settings.
- Navigate to the Developer section.
- Scroll to Webhooks, click Add webhook.
- Enter your endpoint URL (with the
?key=parameter). - Save — Sleekplan starts delivering events immediately.
