#mathers_webhooks
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1227030236605055076
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, can you clarify what you mean with ' setup intent payment is successful'? The SetupIntent collects payment details but does not make a payment. Are you able to clarify?
ok so essentially i create a setup intent and payment is made
payment being successful doesnt mean it immediately reflects on the balance so i would need to create a webhook and listen on it
so update my db
I see, I think you're looking for this event, https://docs.stripe.com/api/events/types#event_types-balance.available. This is emitted when Stripe balance has been updated. Is that what you're looking for?
balance.available correct?
Yes!
ohh so for every charge that is successful and funds are available i can immediately update my table correct and thats just what i need to listen to correct?
That is right
thank you!!