Connecting Stripe
See how to connect Stripe with Reditus
Make sure you are signed up to Reditus.
Once signed in, go to your settings page and toggle to the installation tab: direct link (make sure you are logged in).
Connect Stripe
Log into Stripe
You will be pushed towards the log in page from Stripe, log in and verify yourself.
Go back to Reditus
Stripe will be connected once you see the "disconnect Stripe" button.
Make sure the email is provided within the Stripe payments
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) {});
We use the customerEmail to match the payment with the converted referral and to calculate the commission for your partner.
See also our video explaining the installation process for more information.
Updated on: 23/09/2023
Thank you!