#dahan.han
1 messages · Page 1 of 1 (latest)
Hello! If you verify the email address you used to create your Stripe account and then use that email address does it work?
Sure, I'll give it a try and get back to you with a response.
I have confirmed that it is working correctly.
Additionally, when a refund is processed, I noticed that the Payment status changes to Refunded. I'm curious if there are any further status values after the Refunded status.
it's possible. Sometimes if the refund fails the status will update to failed
Are you saying that it can change from the Refunded status to failed?
sorry, to clarify, which object are you referring to?
the Refund object? or the Charge object?
I had a question about the status values of the items displayed when clicking on the Payments menu in the dashboard.
I'm sorry; I'm not sure if this is a Refund Object or a Charge Object.
I checked again and it seems to be 'Charge Object'.
hmmm, i think it should remain as refunded on the Dashboard. We mainly help with developers who want to integrate directly with the Stripe API here on this channel so i'm not 100% certain about how it'll show on the Dashboard off the top of my head, but you can test this out with the refund failure test card here : https://stripe.com/docs/testing#refunds
My question seems to have been incorrect. Let me rephrase my question in the order I am testing:
- I create a PaymentIntent.
- I process a refund for the created PaymentIntent in the dashboard.
- If the refund is successful in step 3, and the status of the Charge for the PaymentIntent changes to Refund,
- I was wondering if it's acceptable to consider that status value as the final status.
not exactly, you need to handle failed refunds also. Are you a developer?
Yes, I am a developer, and I am currently conducting tests to implement Stripe.
The question I asked was about processing for the PaymentIntent created after its creation, specifically through WebHooks.
To summarize my previous question, can it change from Refund to failed after it has been changed once, and should I consider this as a "payment failure" when it happens?
I'm also curious if there are any relevant links or resources available on this topic.
there is no Refund status for a PaymentIntent : https://stripe.com/docs/api/payment_intents/object#payment_intent_object-status
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
you will ideally setup webhooks to listen for the charge.refund.updated webhook event to be notified if the Refund fails
Thank you for your kind response. It has been very helpful.