Payment processor advice
Basically I'm in the process of developing a website where users can sell digital products (think ebooks and that sort of thing). When a user sells something I take a percentage share of the sale and the user gets the rest. I need a payment processor that will allow me to send the money that is in my bank account and put it in the users bank account via a bank account number and sort code. Effectively I'll be holding the users money until they decide to take it out of my account and put it in their account.
Normally I'd use Stripe as my payment processor but I'm not sure it supports paying money in both directions (user -> website and website -> user). Does anyone have any suggestions at all? The website is effectively an online marketplace for users to sell their goods and I need to be able to pay them back for their share of the sale money.
Any help is appreciated.
6 Replies
See
Api docs for it are here:
@vrun1:
Stripe supports what you are trying to do.
See
https://stripe.com/us/marketplaces for the website -> user part.Api docs for it are here:
https://stripe.com/docs/tutorials/sending-transfers
Wow, I totally missed that. Stripe really is awesome!
Thanks at least I already know how to use the Stripe API. Should speed up development nicely.
> Once you’ve received payments through Stripe, you can create transfers through the API to send funds to arbitrary third-party bank accounts or debit cards. (This is currently only available for US Stripe accounts sending funds to third-party US bank accounts or US Visa or MasterCard debit cards that aren't prepaid.)
unfortunately I am in the UK so it looks like Stripe isn't an option
> unfortunately I am in the UK so it looks like Stripe isn't an option
Propay seems to support similar functionality. They claim to be global, but don't mention if the "split proceeds" is U.S. only:
I also see Braintree Marketplace (owned by Paypal)
@vrun1:
> unfortunately I am in the UK so it looks like Stripe isn't an optionPropay seems to support similar functionality. They claim to be global, but don't mention if the "split proceeds" is U.S. only:
https://www.propay.com/products-service … /splitpay/">https://www.propay.com/products-services/alternate-payment-methods/splitpay/ I also see Braintree Marketplace (owned by Paypal)
https://www.braintreepayments.com/features/marketplace
Yeah I found Braintree myself and it seems like the second best option after Stripe. Looks like I'll have to go with that.
Thanks for your help.