#abhinav-connect
1 messages ยท Page 1 of 1 (latest)
Yes
I want take fees from customers with fees and want hold the payment for some times.
so you're using Connect?
Yes
curl https://api.stripe.com/v1/payment_intents
-u sk_test_tR3PYbcVNZZ796tH88S4VQ2u:
-d amount=1000
-d currency="usd"
-d "automatic_payment_methods[enabled]"=true
-d application_fee_amount="123"
-d "transfer_data[destination]"="{{CONNECTED_STRIPE_ACCOUNT_ID}}"
I am using this request and it transfer to destination account instantly.
I want to transfer these after some times.
the best way is to transfer instantly, but delay the payout. Otherwise it gets very complicated to manage your pending balances on your platform account.
so still do things that way, but set the connected account to manual payouts and only let them pay out when you decide they can. https://stripe.com/connect/payouts So they get they money and it sits in their Stripe account balance but they can't pay it out until you allow them to.
I think payout is working with bank account.
Is it working with stripe account id?
not sure what you mean.
you add to a Stripe account's balance by using transfers(which is what that code you posted does, it processes a payment and transfers most of the money to a connected account). You payout that money to the Stripe account's bank account later.
Payout is working with additional fee?
Because I don't want to deduct the stripe fees on additional fees.
Hi! I'm taking over this thread.
You can find the pricing for Stripe Connect here: https://stripe.com/connect/pricing
I don't want pay extra for payout.
I want to charge additional fees from customer and don't want pay stripe fee for this additional fees.
I want to charge additional fees from customer and don't want pay stripe fee for this additional fees.
I'm sorry I don't understand. Could you try giving a concrete example of what you are trying to do?
For example:
I am taking payment for events and events are managed by vendors.
I want take commission on these events.
If a event charge is $100 and I want charge from customer $118. These $18 are additional fees.
I want hold these payment until event finished.
After event finished, I want to transfer $100 to vendor.
Did you get my requirement?
So customer pays $118, your platform gets $118, and later you transfer $100 to the vendor?
Then what karllekko said should work:
the best way is to transfer instantly, but delay the payout. Otherwise it gets very complicated to manage your pending balances on your platform account.
Another option is to use separate charges and transfer: https://stripe.com/docs/connect/charges-transfers
But How we can handle the stripe fees on additional fees?
I don't want pay fees on additional amount.
If the total amount is $118, then the Stripe fees will be computed on $118.
So one option is to increase the total, for example to $120, to cover for the Stripe fees.
If I use application_fee_amount parameter then what amount stripe use to calculate fees?
If you create a PaymentIntent with amount:11800 ($118) and application_fee_amount:10000 ($100), then the Stripe fee is on the total amount (which is $118)
So this is my requirement.
I don't want pay stripe fee on application_fee_amount and want to hold transfer.
Can we hold transfer when using application_fee_amount?
I don't want pay stripe fee
like I said the Stripe fee will always be on the total pay. You cannot avoid the Stripe fee.
Can we hold transfer when using application_fee_amount?
What do you mean by hold? Like we said previously: either delay the payout, or use separate charges and transfer #1016663046879445045 message
@warm aspen Hello there, Abhinav is working with me (he is a developer) I'm the website owner. We are trying to figure out how to manage those fees. Now the payments work through a wocommerce extension + stripe. So 1 User book and pay (host), 2 we hold the money, 3 the user can click on a button and the payment is released from our account to the final account. We wanted to add commission on it and we did. But now the amount the Host receive is what they asked + our commission.
we want those FEES to be in our account on Stripe under collected fees
Hi ๐ apologies for the delay, I'm jumping in as my teammate needed to step away. Please bear with me a moment while I catch up on the context here.
Thank you for your patience, if you're using WooCommerce's Stripe integration (we weren't involved in building or maintaining that integration so we know very little about how it works) then the WooCommerce team will be better suited to help you understand how to use their integration to accomplish your goals.
It sounds like application fee (the amount that is held by platform for a Connect payment) is what you're looking for.
Hello Toby I am also working Andrea and Abhinav. If the total cost of a service is say $100 we want to send that $100 to the service provider when the customer releases payment (after the service is complete) However we charge 18% fees on top of that $100 totaling $118 to the customer who purchased the service. Their invoice will be $118 but we want to take that extra $18 and put it into our "Collected Fees" section in our Stripe account
Hi ๐ if you were integrating directly with Stripe, then Application Fee sounds like what we would be talking about, but I'm not certain how WooCommerce structured their integration and whether they use the same approach. I would recommend consulting with WooCommerce on how to correctly collect fees for your platform account with their integration.
Thanks!
So just so I'm clear
If I add the $15 and $3 and pass that as "application fees" the $18 will show up in the Collected Fees section of Strip?
Hello ๐
Taking over for toby as they need to step away, give me a moment to catch up please ๐ thanks
Thanks @river shell
If I add the $15 and $3 and pass that as "application fees" the $18 will show up in the Collected Fees section of Strip?
AFAIK it should yes. but as my colleague suggested, you'd likely want to reconfirm with woocommerce team just to make sure as it really depends on their integration of Stripe.
Thanks
๐
Does Payment Plugins for Stripe WooCommerce support split payments?
I don't think our team would know. Our team works with developers building integrations using Stripe's API. This is an integration built and maintained by woocommerce. We have no insights into how it works or what it supports. You'd want to chat with their support team really.