#dannyboy
1 messages · Page 1 of 1 (latest)
Hello! You want to know this ahead of charge or afterwards?
both if possible
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
So afterwards it is simple, you just retrieve the balance transaction object (https://stripe.com/docs/api/balance_transactions/object) which will contain all the details about the charge and fees
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 get there from going PaymentIntent --> Charge --> Balance Transaction
Beforehand, you would have to calculate this yourself
from this page https://dashboard.stripe.com/test/payments/pi_3MK3qbLPsFnWdzcR0BF6MBA7 , how can i go to charge?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
You can't really from the Dashboard. But you can view the Charge/Balance Transaction by looking at the logs/events, like if you look at the payment_intent.succeeded event you can see both the PaymentIntent and the Charge object: https://dashboard.stripe.com/test/events/evt_3MK3qbLPsFnWdzcR0WgCceWh
You can also see the Balance Transaction ID there but you won't see the full details of that Balance Transaction... that isn't displayed directly in the Dashboard. You would need to retrieve via the API
got it . Thanks!
Beforehand, you would have to calculate this yourself -> may i get the link to this page?
as i recall its 2.9% + 30cents per tx?
or it varies depending on currency/country?
Yep for domestic in the US that is correct. Here is our pricing page: https://stripe.com/pricing
thanks again!