#paulC. - Subscriptions
1 messages · Page 1 of 1 (latest)
Hello !
Hello! The Stripe.js approach gives you more control and more options, but you can also do Subscriptions with Checkout which is much easier.
Indeed !
One more question : as per the docs the ideal payment method is not supported by the subscriptions , can I do anything about it ?
Because when I go to this payment's page , they actually state that there are ways to go around this ....
iDEAL does not support Subscriptions, but SEPA Direct Debit does.
I understand ...
Also ,would you mind sharing the name of the events when a subscription is successful and when it bouces ?
bounces *
That's because I dont see any specific terms for those in the event list
Yes
We have a list of the events related to Subscriptions here: https://stripe.com/docs/billing/subscriptions/overview#subscription-events
Thanks a lot !
Specifically for failed payments you may also want to look at invoice.payment_failed: https://stripe.com/docs/cli/trigger#trigger-event-invoice_payment_failed
Indeed ! Thank you !
One more question if I may
How do I set the period when the subscription should be recharged ?
in checkout session
The period of the Subscription is defined by the Price you create. Are you creating Products and Prices via the API or in the Dashboard?
via the api with the cli
Have a look at the recurring.interval property on Prices: https://stripe.com/docs/api/prices/create#create_price-recurring-interval
Thanks a lot !