#jenny_43296
1 messages · Page 1 of 1 (latest)
Hello jenny_43296, we'll be with you shortly! Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
• jenny_43296, 2 hours ago, 9 messages
• jenny_43296, 1 day ago, 9 messages
👋 happy to help
basically you can expand the balance transaction on the refund object https://stripe.com/docs/api/refunds/object#refund_object-balance_transaction
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
the balance transaction nett and fees will be the amoun to deduct out from actual payment?
I'm not sure I understand the question
let say the normal payment is 13.
fee 1.01
nett 11.99
if i refund 10, and still have remaining 3
how do i get the actual fee and nett after refund?
you add the fees and net from the charge balance transaction and the refunded one
but the refunded transaction balance giving me
"fee": 0,
"fee_details": [],
"net": -1000,
the fee is 0 always
I'm not a pricing expert, you can either refer to this support article https://support.stripe.com/questions/understanding-fees-for-refunded-payments or contact https://support.stripe.com/?contact=true to see whether/when you're charged for refunds
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
so once the refund status is success, the amount already refund successfully to user?
how about those require processing time? the status also return success.
Hi! I'm taking over this thread.
Like mentioned, just check the status of the reund: https://stripe.com/docs/api/refunds/object?lang=node#refund_object-status
It can be pending, succeeded, or failed.
if the status written success, but fail to pay back the user, the status will change to failed again?
Yes, that can happen. That's why we recommend to listen to the charge.refund.updated event to be notified of this.
alright, thanks alot.
can i know if subscription recurring payment process is listen to which event is better?
What are you interested in? To know when the Subscription renews, or when the payment fails, or something else?
In general I recommend reading this guide about subscription events: https://stripe.com/docs/billing/subscriptions/webhooks
subscription payment fails/success
alright, thanks alot.