#Vinu
1 messages · Page 1 of 1 (latest)
I am using stripe payment url from my application after the payment is there any call back function for detect the changes in the application?
Hi! Let me help you with this.
You mean you want your application to be notified when the payment succeeds?
Yes
You can use webhooks for this: https://stripe.com/docs/webhooks
In particular checkout.session.completed event.
I will explain my scenario, in my application i am doing the payment in a particular page.after the payment i want to update a date in the page , according to the completion of payment
is there any call back will get for me to update the date in my application after the payment?
Are you using Stripe Checkout?
stripe invoice
the payment in a particular page
Is it Stripe-hosted?
that page in my application.when clicking a button it is redirecting to the stripe payment page
Is this page Stripe Checkout?
this is the page redirecting when i clicking the pay button in my application
You can use invoice.paid webhook event then. It will notify your app when the payment went through.
OK thank you
Happy to help!