#selenium_webhook
1 messages · Page 1 of 1 (latest)
How can I check that.? The client has only provide us their API and secret keys only. We haven't access for their dashboard
No problem. One suggest I have is to add a meta data to the payment_intents created in your platform, so that you can use the metadata to differentiate if the payment_intent.succeeded events are triggered by platform or the connected account.
But will the stripe notify the cusomer saying "Stripe webhook delivery issues" through an email?
What kind of delivery issues?
If payment happened which is NOT from our account, still stripe will try to send the notification for our application right?
Yes you are right
According to your suggestion we shoulf ignore that notification from our application by checking the metadata right?
Hmm, I thought you want to ignore the events which are not triggered by platform?
Yes for the payments which not happened from our Application
Yes. so you can add a metadata say created_by_platform:true to the PaymentIntents that platform creates. When you receive the payment_intent.succeeded event, check if the paymentIntent's metadata contains created_by_platform:true
Oh okay. So for the payments which not happened from our Application, will it be a Webhook delivery issue? I mean will the customer get email saying webhook delivery issues? should be no right?
If there's a webhook delivery issue on the connect webhook endpoint, you (platform) will receive the email.
Got it. Thank you so much for the help!
Of course 🙂