Quick Start Guide

Get up and running with Refgrow in minutes

Overview

Refgrow is a powerful affiliate program platform designed for SaaS businesses. This quick start guide will help you set up your first affiliate program in just a few steps.

1. Create Program

Create and configure your affiliate program

2. Set Up Tracking

Add tracking code to your website to monitor referrals

3. Add Affiliate Dashboard

Integrate the affiliate dashboard into your website

Step 1: Create Your First Program

Create a Program

After signing up for Refgrow:

  1. Log in to your Refgrow dashboard
  2. Click "Add New Program" button
  3. Enter a name for your affiliate program
  4. Follow the onboarding process

Configure Basic Settings

In the first step of onboarding, you'll configure:

  • Conversion tracking method (JavaScript, Stripe, or LemonSqueezy)
  • Tracking domain (your website domain)
  • Cookie lifetime (default is 30 days)
  • Commission type (percentage)
  • Commission value (how much affiliates earn)
  • Commission duration (lifetime or period)

Customize Appearance

In the second step of onboarding, you'll customize your affiliate dashboard:

  • Primary and secondary colors
  • Font color
  • Affiliate title and description
  • Toggle visibility of elements (title, description, daily stats)
  • Option to hide Refgrow branding (premium feature)

Integration Setup

The final step will guide you through setting up integrations for tracking and payments.

Step 2: Add Tracking Script

To track referrals and conversions, add the Refgrow tracking script to your website:

<!-- Add this before the closing body tag on all pages -->
<script src="https://refgrow.com/js/tracking.js"></script>

Manual Conversion Tracking

To manually track conversions (for example, after a user signs up or makes a purchase):

// Track a signup
Refgrow(0, 'signup', 'user@example.com');

// Track a purchase
Refgrow(99.99, 'purchase', 'user@example.com');

Stripe Integration

For automatic tracking with Stripe:

  1. Go to your program settings
  2. Click "Create Stripe API Key" button
  3. Copy the generated API key
  4. Paste it back in the settings
Note: The system will automatically configure webhooks and start tracking your Stripe payments.

LemonSqueezy Integration

  1. Go to your LemonSqueezy Dashboard > Settings > Webhooks
  2. Click "Add webhook"
  3. Set the webhook URL to: https://refgrow.com/api/webhook/lemonsqueezy/YOUR_PROGRAM_ID
  4. Replace YOUR_PROGRAM_ID with your actual program ID
  5. Select the following events:
    • order_created
    • subscription_created
    • subscription_updated
  6. Click "Create webhook" to save

Step 3: Add Affiliate Dashboard

Add the Refgrow affiliate dashboard to your website:

Option 1: With User Authentication

If your website has user authentication, use this code and dynamically set the user's email:

<div id="refgrow" data-program-id="YOUR_PROGRAM_ID" data-program-email="user@example.com"></div>
<script src="https://refgrow.com/js/page.js"></script>

Option 2: Without User Authentication

If you don't have user authentication or want to use the referral page's built-in authentication, use this code:

<div id="refgrow" data-program-id="YOUR_PROGRAM_ID"></div>
<script src="https://refgrow.com/js/page.js"></script>
Note: Replace YOUR_PROGRAM_ID with your actual program ID from your dashboard.

Testing Your Setup

Test Referral Flow

  1. Visit your affiliate dashboard page
  2. Copy your own referral link
  3. Open the link in a different browser or incognito window
  4. Make a test signup or purchase
  5. Check if the conversion shows up in your dashboard

Common Issues

  1. Ensure tracking.js is included on all pages
  2. Check that the cookie lifetime is appropriate for your sales cycle
  3. Verify that the email used in conversion tracking matches the one used for the purchase

  1. Verify your program ID is correct
  2. Check if the page.js script is properly loaded
  3. Look for console errors in browser developer tools

Managing Your Affiliate Program

Monitor Performance

Use your Refgrow dashboard to track clicks, conversions, and revenue.

Process Payouts

Manage affiliate payments through the Payments section.

Adjust Settings

Fine-tune your program settings as needed.

Next Steps

Detailed Installation

Learn all installation options and advanced configurations.

View Guide
Tracking Options

Explore advanced tracking methods and configuration.

Learn More
Stripe Integration

Set up automatic payment tracking with Stripe.

View Guide