#elrock12
1 messages · Page 1 of 1 (latest)
What is the use case to have active subscription when the first invoice isn't paid?
We want the customer to use the product without any payment implications.
In case the subscription is inactive we do block the product usage.
In which scenario that the subscription will become inactive if no payment method has been made from the beginning?
According to this documentation: https://stripe.com/docs/billing/subscriptions/overview#payment-status, The subscription is incom[plete if the payment fails
if the initial payment of the first invoice fails, yes
Can we avoid this, and always set the subscription to active?
irrespective of the status?
not really. Maybe use a trial period, that seems to make sense. Or adjust the logic in your system such that you give access to the product if the connected Subscription is status:"active" || status:"incomplete" .