#_Guilo-referral
1 messages · Page 1 of 1 (latest)
Hello, that's something you'd need to implement yourself
I guess you can add query parameters to the button URL and then on creation of the subscription you update the related Connect parameters to reflect the account
It depends on how exactly you envision the % system working
so let me explain this with proper specifications
If it's a % of the subscription, then you'd likely want to implement a destination subscription: https://stripe.com/docs/connect/subscriptions
But the referrer would need to be a connected account
when user registers to my app, the backend creates a cus_id for him/her
then the user has to subscribe to unlock app features
when user subs to the app, obviusly generates a new sub_id for one of my "classic" sub plans
What I would like to accomplish from here:
-In the exact moment sub_id is generated, I would like a sub_ref_id to be created as well. That would be the string user could share as referral link.
-if someone subs typing an existing sub_ref_id (there is a field in the sub form), the app detects it and send x% to the first user
-in terms of x%, my plan is to send 5% of the "sub sale" if the referrer made less then 10 new subs, 10% if he goes over 10, and 20% if he makes 20 new subs.
That's more or less the whole thing
Dont you have something pre built in order to achieve this?
For referrals? No, but there's way to facilitate building your own system
If you're not using Connect, the best you can probably do is to credit the customer balance of the referrer: https://stripe.com/docs/billing/customer/balance
But that balance can only be applied against future invoices, the balance can't be withdrawn/paid out to an external bank account (as cash)
There's probably third-party products that offer this kind of referral system
Something I could integrate properly with stripe?
Because the reason I would prefer using Stripe to manage my whole payments structure is because when someone subs I get money on my Stripe. This way would be easy to check if the sub came from a referral(can be a link/just a string/everything) and then send the specific x% in cash to the referrer
which is also a customer of course
Something I could integrate properly with stripe?
I'm not sure, you'd need to take a look. There's Rewardful that I know of: https://stripe.com/partners/directory/rewardful
ok thx anyways