Skip to main content
Triggers let you connect your application to Rewards. Instead of managing points manually in the dashboard, your app fires events via the API and points are credited automatically. They live under the Triggers section of the dashboard.
Point Triggers (this page) fire a named event to award a fixed number of points. They are separate from Automations, a different dashboard section whose conditions queue wallets into a rolling draft reward.

Triggers

A trigger defines a named event and the number of points it awards.

Creating a trigger

  1. Dashboard → TriggersNew trigger
  2. Fill in the event name, trigger key, and points amount
  3. The trigger is active immediately
The trigger key is sanitized automatically: spaces become underscores, uppercase is lowercased, special characters are removed.

Managing triggers

From the Triggers table you can:
  • Edit — update the name, key, or points amount
  • Toggle — pause a trigger temporarily (calls while inactive return 403)
  • Delete — permanently remove a trigger (existing point events are retained)

Using triggers from your app

Once a trigger is configured, call the API from your backend to credit points:
See the full Triggers API reference for rate limiting, error handling, and code examples.

Best practices

Your API key must never be exposed in client-side code (browser, mobile app). Always call the API from your backend or a server-side function.
One key per meaningful action (purchase_completed, level_up, referral_accepted) makes your activity feed readable and your analytics useful.
If you need to pause point accumulation temporarily (e.g. during a season reset), toggle the trigger off rather than deleting it.
If your app reacts to point events and fires more triggers, you can create an infinite loop. The API enforces a rate limit of 10 calls/min per (key + wallet + trigger) as a safety net, but design your event flow to avoid it.