Stripe - not canceling

I have integrated stripe and have it all working including the call back but cannot figure out how to get it to cancel. I have a portal included which send the user to the stripe page to cancel, and this works on stripe, but the data is not being sent back to the DB.

This is the backend workflow:

you need a webhook for when a subscription is canceled in stripe

the backend workflow in bubble should use the subscription ID to find the correct data entry in your database to change the status

Yup, as mentioned by @boston85719 , you’d need a webhook.

A web hook basically makes changes done by your users on Stripe on to your database as soon as they are made. Let’s say one of user decides to unsubscribe from his plan, that change is instantly reported to your app rather than your having to check his subscription status at the end of the month and making manual changes.

Try this link to get started, it’s not that complex (Don’t worry!) : https://www.youtube.com/watch?v=leAJ9HD93YM

This topic was automatically closed after 70 days. New replies are no longer allowed.