All Collections
Developer
How to signup a referral
How to signup a referral
Valentin avatar
Written by Valentin
Updated over a week ago

Referrals can have 5 statuses which are:

  • Click (when the referral opens the webpage with a valid URL param)

  • Lead (when the referral signs up to your business)

  • Active (when the referral starts a subscription)

  • Canceled (when you cancel the referral)

  • Refunded (when you refund the referral)

The script doesn't handle signups by itself. You will need to call a Tolt signup function that exists on Tolt's script, that you have previously integrated into your landing page and frontend.
โ€‹window.tolt.signup() takes only one parameter which is the referrals email address.

Before calling this function you should check if window.tolt_referral exists and if it's not null.

if (window.tolt_referral) {
window.tolt.signup("[email protected]")
}

The signup function will update the referral from click to lead and add the email address.

Did this answer your question?