#dannyboy
1 messages · Page 1 of 1 (latest)
You can simply remove the default_payment_method from the subscription/customer, so that the recurring payments won't be successful. see details in https://stripe.com/docs/billing/subscriptions/overview#build-your-own-handling-for-recurring-charge-failures
So here's the flow..
I will register in the UI and will obtain a Stripe::Subscription object. Let's say that this is a recurring subscription for 1 month.
Since i register today, the automatic payment will kick in on July 13 2022.. I don't wanna wait and wanna trigger it today...
So i am looking for a script how to do this.. What attribute can i update to make this happen
OK, I'd suggest using test clocks https://stripe.com/docs/billing/testing/test-clocks
thanks