Docs / Triggers

Triggers

Triggers let you respond to events as they happen. Set up automatic notifications or connect to other tools when users do something on your site.

What You Can Do

  • Team Alerts: Get notified in Slack or Discord when someone signs up.
  • Bug Tracking: Send errors to your issue tracker automatically.
  • Marketing: Trigger email campaigns or CRM updates when users take action.

Setting Up a Trigger

In your dashboard, go to the Triggers section. You'll need:

  1. Event: What to watch for (like Registeror Page View).
  2. Action: What happens when the event occurs.
  3. Settings: Configuration like webhook URLs.

Supported Actions

Discord

Send messages to your Discord server. Just paste the webhook URL from your Discord settings.

Webhooks

Send HTTP POST requests to any URL. Perfect for connecting with Zapier, IFTTT, or your own server.

http
POST /your-endpoint HTTP/1.1 Content-Type: application/json { "event": "Register", "timestamp": 1634567890, "data": { ... } }