#ritikjain_31246
1 messages · Page 1 of 1 (latest)
These are two different event IDs in your screenshot
Can you share both event ID (evt_xxx), so that I can check what they are?
I can only see 1 eventid on dashboard
"evt_3OEoSTDCgU75ZiBU0E7MYBag"
ss that I attahced is from stripe CLI
You can copy and paste the event ID in the screenshot here
I don't why I am getting failure event
failure one "evt_3OEoSTDCgU75ZiBU0dXdjayJ"
success one "evt_3OEoSTDCgU75ZiBU0E7MYBag"
- Failed one is
charge.succeededevent: https://dashboard.stripe.com/test/events/evt_3OEoSTDCgU75ZiBU0dXdjayJ - Successful one is
payment_intent.succeededevent: https://dashboard.stripe.com/test/events/evt_3OEoSTDCgU75ZiBU0E7MYBag
Your server responded 500 to Stripe in evt_3OEoSTDCgU75ZiBU0dXdjayJ
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I'd recommend checking your system why it returned 500
When the payment is made successfully, both charge.succeeded and payment_intent.succeeded events will be sent to the local webhook points
ahh okay, I see.
let me check and get back to you.
Thanks a lot for quick support
I really appreciate you and Stripe support
No problem! Happy to help 😄
I just checked that I haven't setup any charge.succeeded webhook event so is it the reason ?
This is forwarded to the local endpoint. Event settings in Dashboard and local endpoints are different. Local endpoint will receive all events by default
so that's mean on local i will receive each and every event but on production/Live I will receive only those events which I have configured to callback, is my understanding correct?
Yup! If the Webhook endpoints configured in Dashboard subscribed to specific events, only those events will be sent
ahh I see okay, thanks!