Real-time notifications when events occur.

Postbacks & Webhooks

Revvvs can notify affiliates in real-time when events occur via postback URLs. Affiliates configure their postback URLs from their portal settings.

How postbacks work

  1. An affiliate configures a postback URL for an event type (e.g., registration, first_deposit)
  2. When that event occurs for a player attributed to the affiliate, Revvvs sends an HTTP GET request to the configured URL
  3. Template variables in the URL are replaced with actual values

Template variables

Affiliates can use these placeholders in their postback URLs:

VariableDescription
{click_id}The original click ID
{affiliate_id}The affiliate's ID
{player_id}The internal player ID
{event_type}The event type (e.g., REGISTRATION)
{amount}The event amount (if applicable)
{currency}The currency (if applicable)
{event_time}The event timestamp
{sub1} - {sub5}The SubID values from the original click

Example postback URL:

https://affiliate-tracker.com/postback?clickid={click_id}&event={event_type}&amount={amount}&sub1={sub1}

Supported event types for postbacks

  • CLICK
  • REGISTRATION
  • FIRST_DEPOSIT
  • DEPOSIT
  • NGR_UPDATE

Postback logging

All postback attempts are logged with:

  • The URL that was called
  • HTTP status code received
  • Success/failure status
  • Timestamp

Affiliates can view their postback logs in the portal under Settings > Postbacks.

Next: Custom Domains