#paragon-subscription
1 messages · Page 1 of 1 (latest)
hello! you should just create a new Subscription with the new Price
You'll be creating the subscription with payment_behaviour=<something>_incomplete and
you cannot update a subscription in incomplete status in a way that results in a new invoice or invoice items.
You'll likely be using payment_behaviour=default_incomplete - if the payment intent is not confirmed within 23 hours subscriptions transition to status=incomplete_expired. https://stripe.com/docs/api/subscriptions/create#create_subscription-payment_behavior
so you can immediately cancel it if you want i guess. But it'll expire 23 hours later anyway
got it
A useful tool for testing subscriptions with in case you haven't seen it yet : https://stripe.com/docs/billing/testing/test-clocks
i will check it out