#Kyle U
1 messages · Page 1 of 1 (latest)
Hi, are you having issues confirming this on your end? Are you seeing an error? Do you have more details?
We did a test transaction but want to confirm that we have the charge / transfer/ app fee set up properly for our use case. The total charge was $69.05 and $3.39 was transferred to one bank account & $62.15 was sent to another and $3.51 is retained to our account
Charge ID: req_f9mPehO8LPaMFW
Transfer 1: req_CS1DdlzHCC30rq
Transfer 2: req_Inc0vmCQPVzd3n
Is there a way to confirm that $3.51 from the $69.05 charge was retained to our account?
First of all, I recommend that you move away from using our legacy Charges API use Payment Intents. This document, https://stripe.com/docs/payments/payment-intents/migration/charges talks a bit more about this.
Next, it looks like you're using separate charges and transfers flow: https://stripe.com/docs/connect/charges-transfers. Where you create a charge, https://dashboard.stripe.com/test/logs/req_f9mPehO8LPaMFW with amount: "6905",then transfer funds to 2 different connected accounts. https://dashboard.stripe.com/test/logs/req_CS1DdlzHCC30rq - amount: "6215" to acct_1MmkkGRfboI3jx7g, and https://dashboard.stripe.com/test/logs/req_Inc0vmCQPVzd3n - amount: "339" to acct_1Mlw53Rk5NVki1Lp. So it's not doing what you're trying to do.
Can you confirm which integration document you're following here?
No it is what we are trying to do
Ok, then it works!
We were told by the last Stripe dev that the difference between the charge and the transfers will be retained to our account
Is that true? How can we see the $3.51? We were told this is how we can collect an application fee
Then, that is correct
but it would not be an application fee like you mentioned above
But it would still come to our account as revenue?
Yeap, it would stay on acct_1LxE9RDFBaZ7SLC9
Is there a way to see the amounts that go to acct_1LxE9RDFBaZ7SLC9?
looking into that now..
I'm looking at Balance Transactions, https://stripe.com/docs/api/balance_transactions/object which represents funds moving on your account. I'm thinking you would need to track this new on your end: https://stripe.com/docs/connect/charges-transfers#collecting-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 there is nothing in the Stripe website that will show us the transfers into our balance?
Will it just show as our CAD Balance and then if we want to withdraw these funds we click Pay out funds?
I was doubting myself, and have confirmed that you'd need to track this on your end.
Yeah, or you can create a payout: https://stripe.com/docs/api/payouts/create via the API.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Ok thanks. So you can confirm that the CAD Balance that will show on our dashboard will be the total amount that we charged and didn't transfer?