#GomuGomu88-connect
1 messages · Page 1 of 1 (latest)
Hey, can you explain it a little more detail please?
connecting accounts directly receiving a payment and then getting fees and sending them to selected connecting accounts
Doesn't really make sense
im really sorry, let me try to explain a little bit
we are receiving payments through stripe, we have stripe connect integrated in our platform
we want those payments to going directly to our connecting accounts which are our "shops"
and then take a profit fee for our company, also collecting taxes from some shops
let me know if having any doubts
Sure, that can work with Connect. Are you processing payments at all yet? What type of connected accounts are you using?
we are using express accounts, we are still in development but we have already done the gateway with stripe for charging payments from google pay/apple pay or debit card
So you'll likely be looking at destination charges: https://stripe.com/docs/connect/destination-charges
Which will direct the payment to your connected accounts, but only after you've taken an application fee
ohhh so you mean they wont have access on what fee amount we have substracted from payment right?
What do you mean by 'access'?
Let me just check
also can we adding multiple fees in a same connecting account?
sure
Normally just a single fee per transaction
The application fee is visible to the connected account with destination charges, yes
If that's an issue then you'd want to look at separate charges & transfers: https://stripe.com/docs/connect/charges-transfers
in separate charges stripe is charging to customer and then we (As platform) are hading out the money?
Yes, the platform account would process the payment and then you'd create a transfer to the connected account for the desired amount (after deducting your platform fees)
oh ok, so the debit is charged in debit card/google pay in the customer and then we handle this money right? We dont need to advance the money right?
Exactly
great, thanks!
i have another question
for collecting taxes, could we do with separate charges and transfers or should we using the module of taxes? and whats the difference?
cus there will be some stores to be taxed and some others who wont be necessary as explained before
15% taxes or 0% taxes the two amounts
Are you using Stripe Tax?
amounts are fixed
no no im still not using anything, but we want some kind of dashboard to set whos gonna be taxed or not
we planned to set question in an input in registration form in our mobile app, so if user is selecting an option then it will be tax with 15% or 0% depend on option selected
so im asking you for the best option that we could be taking
what do you think, stripe taxes or through separate charges and transfers
Well Stripe Tax only works with Checkout right now, so unless you're using that it's not an option
mmm i dont know what is a checkout
we are charging through google pay/apple pay and manually inserted debit card
but dont know if we are using checkout
To be clear, the taxation element of this is completely separate to which type of Connect charges you use
It's up to you how you charge and reconcile for tax
I think definately we are using a checkout, can you check it?:
https://app.tipeame.com/?id=U2FsdGVkX18zZFA6/GeMPrbUjfea2513TPmWdmkFmh9W3mGxcqzTJ1ArC3SLlODZ
with stripe taxes can i decide who is gonna be taxing and charge differents taxes depending on stripe connect account?
Hey there 👋
ynnoj had to step away but give me a moment to catch up here
i dont know what could be the difference between taxing with separates charges and transfers or do it with stripe tax
sure, thanks hanzo 🙂
Ah I believe you're using cardElement and not Stripe Checkout
oh, so stripe tax cannot be using with cardElement?
Currently, no. It only works with Checkout.
ok
so i can do it anyways with separate charges and transfers
but how can i be calculating stripe fee?
as i see stripe fee can changing depend on type of card
if card is from outside of europe stripe is charging 2.8% and UK i think it was 2.4%, for european 1.4%
hey there @thick tendon -- yes the fees will be different for each country and payment method type
You'd have to account for that if trying to calculate ahead of time -- you can only inspect the actual fees afterward
What are you trying to do with this?
here's how you can inspect the fees for a payment with expansion after its completed: https://stripe.com/docs/expand/use-cases#stripe-fee-for-payment
well to tax the shops i need to calculate the total amount without stripe fee
cus i cant use stripe taxes module so i need to calculate taxes
thats why i need to know the fee
Hey @thick tendon, I'm stepping in here. Give me a moment to catch up.
So your issue is that you want to know the card type before the charge, is that correct?
yes
for calculating stripe fee
also, is it possible to use cardElements with separate charges and transfers
right?
You can examine the card type with the change event after the user enters the card number.
And since separate change & transfers are just payment intents on the platform and transfers to connected accounts there is no reason you cannot use Card or Payment Elements
I am not familiar enough with the Magento module to understand what other actions in your integration would trigger this update request but it was a request from the Magento plugin.
This thread has been archived. If you need help with anything else please ask in #dev-help or contact Stripe Support: https://support.stripe.com/contact
Hello! You had another question?
Going to archive for now, please follow up in the main channel if you have more questions instead!
@thick tendon here
thanks so much
I have another question related with separate charges and transfers my developer told me that when we need multiple transfers to be done then we (As platform) we need to advance the money from our own balances, so basically he said we need to have funds in our platform to make those multiple transfers, thats why we talked to stripe and they talked us about beta, for topups
Yes, that sounds correct. And what's your question?
we want to make it through the debit charged to customer
not through our balances
can you confirm that we can do with separates charges and transfers
You can do Separate charges and transfers, with source_transaction on the Transfer
as i said, we are charging to customer through cardEelements and then we are taking 2 fees and sending to selected connecting accounts, also taking taxes from that amount
so, we dont need balances to make the transfers cus the money is taking from customer´s charge?
sorry if i seem repetitive, but my developer told me that the only way is through our balances
and we cant do that way
we need to make it through customer charges
Yes this way it would take the fund from the source_transaction. It is explained on that Doc.
By using source_transaction, the transfer request succeeds regardless of your available balance and the transfer itself only occurs once the charge’s funds become available.
ok and how long takes charge´s funds to be available?
i mean when a customer through cardElements is charged (We are using debit card/google pay or apple pay) the money is instantly in our account?
Yes, as long as the Charge status changed to succeeded
ok thats great!