#caio-cruz-split-payment
1 messages · Page 1 of 1 (latest)
really depends on a lot of factors about your business, the relationship with the donor, who should appear on credit card statement, who handles customer service etc
what type of accounts are you using: https://stripe.com/docs/connect/accounts#choosing-approach
you need to use what works for your model
also for selecting charge type: https://stripe.com/docs/connect/charges#types
example: if a donor makes a $100 donation, I want to transfer only 4% to the user who referred that donor. Using the payment intent "application_fee_amount: 96" in this case $100 would be sent to the stripe express account, and then $96 would be passed on to my platform account. Is this correct?
I currently use the creation of transfers for ACH payments... Works great!
ah, so you handle it manaully
but for credit card payments, I am using the payment split in the payment intent creation. I use express account.
can you provide a snippet showing your payment intent creation?
I got it. Thanks for your help!
this is exactly what I needed https://stripe.com/docs/connect/destination-charges#flow-of-funds-app-fee
excellent! my pleasure 🙂