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:
- Log in to your Refgrow dashboard
- Click "Add New Program" button
- Enter a name for your affiliate program
- 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:
- Go to your program settings
- Click "Create Stripe API Key" button
- Copy the generated API key
- Paste it back in the settings
LemonSqueezy Integration
- Go to your LemonSqueezy Dashboard > Settings > Webhooks
- Click "Add webhook"
- Set the webhook URL to:
https://refgrow.com/api/webhook/lemonsqueezy/YOUR_PROGRAM_ID
- Replace YOUR_PROGRAM_ID with your actual program ID
-
Select the following events:
- order_created
- subscription_created
- subscription_updated
- 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>
Testing Your Setup
Test Referral Flow
- Visit your affiliate dashboard page
- Copy your own referral link
- Open the link in a different browser or incognito window
- Make a test signup or purchase
- Check if the conversion shows up in your dashboard
Common Issues
- Ensure tracking.js is included on all pages
- Check that the cookie lifetime is appropriate for your sales cycle
- Verify that the email used in conversion tracking matches the one used for the purchase
- Verify your program ID is correct
- Check if the page.js script is properly loaded
- 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.