#eytan
1 messages · Page 1 of 1 (latest)
Hi 👋
You can see the Stripe fees in the Balance Transaction associated with a payment. If you want to get the net amount you will want to find the Balance transaction. https://stripe.com/docs/api/balance_transactions/object
Can you tell me what API object you are starting with?
The payment intent object
Perfect. Okay so with the Payment Intent you can find the related Charge object for the successful payment, and the Charge object has a related Balance Transaction ID
You can get all this in a single API call using the expand parameter
Oh great ! It works ! Thank you !!