#Bandi Odelu
1 messages · Page 1 of 1 (latest)
Not sure how JMeter will do things differently but you can find your requests on your Dashboard log https://dashboard.stripe.com/test/logs
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Then you can put here some example request id req_xxx that we can look closer into
req_wpxGuf4skNL8VL
That PaymentIntent hasn't been confirmed, that's why it doesn't have Charge
We only create Charge if the PaymentIntent is confirmed (the customer successfully paid)
is any confirmation missing from stripe webhook or any other sources?
means where we need to check that on stripe
and
is there any particular reason behind?
It's simply that you didn't have the Confirmation step
a PaymentIntent has 2 main steps: creation and confirmation
It depends on how you integrate Stripe API in the first place, but normally you create the PaymentIntent on backend, then passing its client secret to frontend and confirm it in frontend
So we can't recreate the creation and confirmation steps on JMeter
It really depends on how complicated is the confirmation step and how you use JMeter