#james_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/1367258897710321747
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there. Creating a webhook endpoint means that you need to have an address somewhere that Stripe can send webhook events to, which are http requests, and that can respond to those requests. Typically that is the backend, or server, of a user's application. I believe there are services that will give you an endpiont to use for things like this, but I don't have specific knowledge about them.
So my first question is, do you have an endpoint that webhook events can be sent to?
By end point would this refer to a URL?
The devs of GeoDirctory have asked that i setup a webhook url - https://sleafordlocal.co.uk/index.php?wpi-listener=IPN&wpi-gateway=stripe
Okay, so then you would need to create a webhook endpoint in Stripe - I think the new docs call them "event destinations"
that is explained here: https://docs.stripe.com/webhooks
Do you know which listeners I need to select ata ll?
Do you mean which events you need to listen to?
Yes, sorry
The problem we are having is that the website isn't reflecting updates of payments or subscription expiries. Stripe has ollected the subscription payment just fine but the website would say "Overdue" or if we end a subscription on the website the subscription isn't cancelled on Stripe so recurring payments are being taken
It depends a lot on what you want the webhook endpoint for - what information you need. I would have a good look at our reference on event types here: https://docs.stripe.com/api/events/types
You can command+f for keywords like "Subscription", "Customer", "payment_intent"
OK thank you for your help. I will put that question to the developers of GeoDirectoey/GetPaid as I'm sure they will know what events need to be selected.