#alinur-paymentlink-subscription
1 messages · Page 1 of 1 (latest)
I'm thinking of using the link to pay.
What does this mean?
A payment link will redirect your users to a Checkout page where Stripe will collect the payment method information. When they complete the form there Stripe will fire multiple Webhook events to notify you
Is it possible to transfer the email value to the payment page when redirecting?
How do I get a payment link in the format?:
https://checkout.stripe.com/c/pay/abcdef12345
You can use the prefilled parameters we show here: https://stripe.com/docs/payment-links/customize#customize-checkout-with-url-parameters
Okay, it's clear here, just need to add parameters to the link via ?email=...
And how do I make the payment plan I asked about earlier?
trial($1 24 hours)
...24 hours later...
Full cost payment ($9)
...1 week later ...
Full cost payment ($9)
...1 week later ...
Full cost payment ($9)
...
and so on.
Okay so you need a Price object that recurs weekly with a $9/week cycle
yes, as well as a 24-hour trial for $1.
how do I make such a plan?
- that sounds like a subscription schedule, which is not something Payment Links supports directly
https://stripe.com/docs/billing/subscriptions/subscription-schedules
But you will want to review how our recurring pricing models work too https://stripe.com/docs/products-prices/pricing-models
alinur-paymentlink-subscription
Perhaps you misunderstood me.
Let's try to use another explanation.
I need to create a weekly subscription with a free trial lasting 24 hours
You said $1 trial, that isn't free
Меня не устроил Ваш ответ.
Я пытаюсь объяснить иначе. Используя уже другой тариф
Hello, unfortunately we can only provide English support in this channel. Feel free to switch to English, or contact support at https://support.stripe.com/contact if you need help in another language
sorry
I will be satisfied with the free trial version if the client's token is saved and the payment is made automatically. That is, for the subsequent full payment, the customer will not need to enter the payment details of the card.
so in my case, any of the trial options (free or $1) will suit me
Okay so you create a Price that billns $9/week and, when you create the Payment Link in the dashboard, you can specify the free trial for 1 day
please write in more detail