#nmlarkin
1 messages · Page 1 of 1 (latest)
Hi, if the product is the same, you can reuse the same Payment Link, https://stripe.com/docs/api/payment_links/payment_links/create. However, I do not fully understand the question. Can you reword it please so I can provide the best answer possible?
like I have a product for $2500, so they can pay it in fill if they want OR they can pay it in 3 split payments
The YouTube Growth System is an 8 Week "Done With You" Training Program where you'll learn, install, and put into action Adam Linkenauger's successful YouTube a Video Marketing System.
I was wondering if i could just use one payment link with the 2 options, and let the customer how they would want to pay. pay in full, or split the payment in 3
It is totally up to you. We are happy to help with Stripe Integration questions here.
If you're asking if it's programmatically possible with Payment Link, then it's not. You'd have either or and share the link depending on what you customer wants to choose.
Ok. Thank you!
Thats all I needed to know.
Is it possible to set an expiration on the "monthly" product after the third payment?
What do you mean by 'expiration on the "monthly" product'?
The YouTube Growth System is an 8 Week "Done With You" Training Program where you'll learn, install, and put into action Adam Linkenauger's successful YouTube a Video Marketing System.
Pay in 3. So they would get charged 3 times of $875
after that, is it possible to have an date to their subscription plan on this product. like "stop after 3rd successful payment"
I see, I think there is a confusion here so let me add a bit more context here.
So i dont know how to set an end to a subscription product and i can't find an article on it
When you create a price for a subscription, you can set the interval count: https://stripe.com/docs/api/prices/create#create_price-recurring-interval_count.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
So i saw that
and it gives me an every 3 months option
but not a bill once a month for 3 months
and then it ends
Testing this on my end
Are you developer? I have a few solutions that would work here but it depends on how much you want to code. Or of you're looking for a no code solution
If you have hundreds of subscription per day, the no code option is not nice
I am not a developer
I will probably have like 20 people who sign up for the pay in 3 option
If that is the case, I would listen to https://stripe.com/docs/api/events/types#event_types-customer.subscription.created event and then via the Dashoboard update the Subscription to cycle through 3 months only.
So...if i do that
I need to choose a customer first
Or can I set up a subscription without choosing a customer first
and create a link like i do for the products?
Customers are required for a subscription: https://stripe.com/docs/api/payment_links/payment_links/create#create_payment_link-customer_creation
You do not need to 'choose' a customer, but it if it's a subscription it would be created
I would keep playing around in test mode
ok. thank you