#chiefwhitecloud
1 messages · Page 1 of 1 (latest)
Wondering if there is a payment_behaviour that supports this. Though, I realize there is no payment as the invoice is $0.
Yes you can use The pending SetupIntent when creating a Subscription if the first invoice is 0$
https://stripe.com/docs/api/subscriptions/object#subscription_object-pending_setup_intent
But, I don’t want the subscription to be active unless the pending setup intent is confirmed. Is this possible?
Ah no, the Subscription is immediately active with trial period
What you can do in your integration is to check if there is an attached payment method or not to eh Subscrition
Ok
Id need to do that when? If the user never completes the setup intent, I don’t have means to delete the subscription
In that case you can configure the Subscription to be canceled if there is no payment method collected:
https://stripe.com/docs/billing/subscriptions/trials#configure-free-trials-without-payment-methods-to-cancel
Ok thank you!