#mathankumar-payments

1 messages · Page 1 of 1 (latest)

final onyx
#

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?

versed sundial
#

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...

final onyx
#

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.

versed sundial
#

I used usage-based-plan, thats invoice also have time (month) for payment

#

i just need to trigger the subscription cancelled event from stripe??

opaque narwhal
#

👋 I'm stepping in for @final onyx since they had to step away

#

just give me a few minutes to catch up

versed sundial
#

okay sure

opaque narwhal
#

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?

versed sundial
#

for example , customer have a plan with monthly subscription and at the end of the subscription it will expire or what happen? @opaque narwhal

opaque narwhal
#

as @final onyx explained it won't automatically expire

versed sundial
#

okay, invoice created and it must be paid with in some time right ?

#

how can i know fom my product, the subscription expierd !

opaque narwhal
#

what do you mean by expired?

#

that the invoice wasn't paid?

versed sundial
#

yes if invoice not paid what happen?

opaque narwhal
#

you can choose what happens in your dashboard settings

#

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?