#Fossil
1 messages ยท Page 1 of 1 (latest)
You have to get the Balance Transaction object from the Charge object: https://stripe.com/docs/api/charges/object#charge_object-balance_transaction
Once you have that, you can look at the fee: https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-fee
And the fee details: https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-fee_details
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Ah okay. Was hoping to get it with the webhook. Thanks ๐
No problem! yeah, you would have to make a separate retrieve call unfortunately
Roger. Cheers!