#Kevin Dsouza-webhooks
1 messages · Page 1 of 1 (latest)
👋 What's the id of either the endpoint or the event you're trying to get?
(you probably need to set connect: true on the endpoint but happy to check if that's it) https://stripe.com/docs/api/webhook_endpoints/create#create_webhook_endpoint-connect
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hello, here's the endpoint https://dashboard.stripe.com/test/webhooks/we_1JucwKBtjOGM2pFlcgs1lA3M
It receives test payment _intent events sent from the dashboard, but not real events
If I enable ALL events I see a payment.created event but cant find info on it in the docs
Heres the event thats not being caught
https://dashboard.stripe.com/test/events/evt_3Jud8RBtjOGM2pFl22gtePEP
That appears to be a destination charge, which means the payment intent actually resides on your platform account. So in this case the webhook endpoint you have wouldn't pick that up as it's configured to receive events from your connected accounts.
To receive this event you'd need another webhook listening to events on your platform. This doc goes a bit deeper into the differences between an account and connect webhook.
https://stripe.com/docs/connect/webhooks