I'm building a marketplace application:
- The customer pays the seller on the marketplace
- The marketplace takes a cut of the payment
I would have a payment processing system with the following features
- The cut and the 100%-cut are sent directly to the marketplace and seller accounts (ie, I don't want to have 100% on the marketplace account and then to forward the 100%-cut to the seller)
- I would love to have a UI as much integrated with the marketplace website as possible. This implies that the customer in the worst case has to put only name, surname and credit card number on the payment processor interface (the ideal would be a payment interface totally integrated with our website)
- I don't want to force the customer to register to any third party service
- It should work nicely with Ruby on Rails
- It should work for non US-based companies and should support multicurrency payments
What are the options out there?
Thanks.