#fattyfingers
1 messages · Page 1 of 1 (latest)
Hey! Bit of a broad question! Is there a specific use case you're trying to account for?
When a sale is made we need to split it between 3 people.
-
A portion goes to seller A. -
A portion goes to Agent B -
A portion goes to Owner C
Thanks for the clarification.
You can use Stripe Connect yes for that:
https://stripe.com/docs/connect
To achieve that scenario, you can use separate charge and transfers, further details can be found here:
https://stripe.com/docs/connect/charges-transfers#collecting-fees
So do i have write code & make cron job ?
You can create your own integration in that case yeah for sure you need to code. But you can use Stripe no-code solutions also:
Here is how to use Stripe Connect with no code
https://stripe.com/docs/connect/collect-then-transfer-guide?platform=no-code
I have a solution that is for a Business Digital card & its not eCommerce. So I have developed the payment gateway service, i don't know how to use no-code there
So you need to develop the payment gateway in order to support Stripe Connect and Seperate Charges and transfer:
https://stripe.com/docs/connect/charges-transfers
this is interface i have designed & implemented stripe payment gateway
I want when someone pay then it should split in 3 parts
You can follow this steps and adapt how you are creating the PaymentIntent in this interfacte in order to use the on_behalf_of:
https://stripe.com/docs/connect/charges-transfers#on-behalf-of
Then you create transfers to each one of your connected Accounts:
https://stripe.com/docs/connect/charges-transfers#transfer-availability
Thanks checking