|
|
|
|
|
by dylandrop
4724 days ago
|
|
IMO, neither really are as great as they should be yet. That being said, I'm using Stripe. Switching over from Paypal, this is what I have to say: -The process to make charges from a sellers account seems to need an unnecessary amount of requests -Why can't we pay out to multiple sellers at once like Paypal can? -At least in Stripe, it seems kind of silly I have to refresh a credit card token each time I want to make a new charge |
|
If you're looking to split payments to multiple parties, you may want to take a look at sending transfers, rather than using Connect: https://stripe.com/blog/send-payouts-with-stripe
This only requires the sellers' bank account information in order to pay them out.
Stripe provides a Customer abstraction that makes it easy to save credit card information for later and use it multiple times. Instead of charging the card immediately, you can create a new Customer object and save the card to that customer. See more here: https://stripe.com/docs/tutorials/charges#saving-credit-card...