#mathankumar-payments
1 messages · Page 1 of 1 (latest)
hi! I'm not sure I entirely follow, could you elaborate on the question? What is the 'bill' exactly in Stripe, what APIs are you using?
and what's an "alert message" in this context?
for example , customer have a plan with monthly subscription and at the end of the subscription usualy it expired. in my scenerio how can i give (set) extra 30 days to expire the plan? without my action in end of subscription...
hmm, well subscriptions in Stripe don't usually "end" like that, they continue forever. If an invoice for one month is not paid, then generally we try to pay it a few times and then the subscription might get cancelled.
generally the way you build it is at the start of each month, you use a webhook to detect that the current invoice was paid, and give the customer access to your product for the next month. If you get a webhook that all payment attempts failed and the subscription got cancelled, then you remove access for that customer, for example.
I don't really follow your use case or example.
I used usage-based-plan, thats invoice also have time (month) for payment
i just need to trigger the subscription cancelled event from stripe??
👋 I'm stepping in for @final onyx since they had to step away
just give me a few minutes to catch up
okay sure
I'm sorry, but I'm a bit lost between what I think your question is, what my colleague got from your question and what the question could actually be
could you please rephrase your asking so I could try to better understand it and help?
for example , customer have a plan with monthly subscription and at the end of the subscription it will expire or what happen? @opaque narwhal
as @final onyx explained it won't automatically expire
okay, invoice created and it must be paid with in some time right ?
how can i know fom my product, the subscription expierd !
yes if invoice not paid what happen?
you can choose what happens in your dashboard settings
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
under Manage failed payments / Subscription Status
you can choose whether you want to cancel, mark as unpaid, leave subscription as is depending on your business model
and you can customize your retry schedule
is the subscription collection_method automatically or send_invoice?