DEV Community

Yu Song
Yu Song

Posted on

Stripe PaymentIntent status is success, but it never show on my Dashboard charges

`I'm using Stripe PaymentIntent to charge the customer's one of the payment methods like below:

intent = Stripe::PaymentIntent.create({

payment_method: 'pm_1M8Ax8AG...',

customer: my stripe customer id...,

amount: 8765,

currency: 'usd',

confirmation_method: 'automatic',

confirm: true,

})`

I can see the intent.status is success, but I could never see it on my dashboard under: https://dashboard.stripe.com/test/payments, there is no $87.65 transaction appears, can anyone tell me why? or I should look at other pages? Thanks.

Latest comments (0)