Are you using Stripe to charge your clients? See here how to connect it to Reditus.
Integrating Stripe with Reditus is essential to track payments, subscriptions, and calculate affiliate commissions effectively. Here’s a comprehensive guide to help you connect Stripe with Reditus.
Step 1: Sign Up and Log In to Reditus
Before you start, make sure you are signed up for Reditus. Once you are logged in, navigate to your Settings page and go to the Installation tab.
Direct link to installation tab (Ensure you are logged in).
Step 2: Connect Stripe
Once you are in the installation tab, look for the option to Connect Stripe.
Step 3: Log into Stripe
Click on the Stripe integration option, and you will be directed to Stripe’s login page. Log in with your Stripe credentials and verify your identity as prompted.
Step 4: Return to Reditus
Once you have successfully logged into Stripe, you will automatically be redirected back to Reditus. You’ll know the integration is complete when you see a "Disconnect Stripe" button appear.
Important: Ensure Email is Provided in Stripe Payments
When integrating Stripe with Reditus, it’s crucial that the customer email is included in the Stripe payment flow. This is how Reditus tracks conversions and calculates commissions.
Here’s an example of how to include the customer email in Stripe’s checkout process:
var stripe = Stripe('pk_test_BLN99TPxNnUBFGtSD..........');
stripe.redirectToCheckout({
lineItems: [{ price: 'price_1HlkW92aSFsAw', quantity: 1 }],
mode: 'subscription',
successUrl: 'https://example.com/success',
cancelUrl: 'https://example.com/cancel',
customerEmail: 'customer@example.com'
}).then(function (result) {});
By including the customerEmail
parameter, Reditus can properly associate the payment with a converted referral and calculate the appropriate commission for your affiliate partner.
Additional Resources
For more information and a step-by-step video guide, check out our installation video.
By following these steps, you'll have Stripe seamlessly integrated with Reditus, ensuring your affiliate marketing program runs smoothly!