#joe8912
1 messages · Page 1 of 1 (latest)
No, you have to create the Application Fee at time the time of charge: https://stripe.com/docs/api/application_fees?lang=python
Alternatively, you could implement Separate Charges and Transfers, then just create the Transfer for the original amount minus the fee you want to charge. This is a way to collect a fee without explicitly using Application 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.
so for my application, I have an add-to-cart but The buyer can buy from multiple vendors and pay all in one transaction. So from my understnading, I just subtract the fee manually before every transfer to collect fee?
Yup. You would just send the Transfer, less the fee amount in that case